
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            background-color: #fff;
        }
		
        header {
            background: #2d6f52;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
        }

        .logo {
            border-radius: 8px;
            text-decoration: none;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
        }

        .logo:hover {
            transform: translateY(-2px);
        }

        nav {
            flex-grow: 1;
            margin-left: 50px;
        }

        .menu {
            list-style: none;
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
        }

        .menu > li {
            position: relative;
        }

        .menu > li > a {
            display: block;
            padding: 12px 12px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border-radius: 5px;
            font-size: 16px;
            font-family: 'Raleway', sans-serif;
        }

        .menu > li > a:hover {
            background-color: rgba(255,255,255,0.15);
        }

        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            list-style: none;
            min-width: 200px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border-radius: 5px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            margin-top: 5px;
        }

        .menu > li:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .submenu li a {
            display: block;
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            font-family: 'Raleway', sans-serif;
            font-weight: 500;
        }

        .submenu li a:hover {
            background-color: #3c946e;
            border-left-color: #2d6f52;
            padding-left: 25px;
            color: white;
        }

        .submenu li:first-child a {
            border-radius: 5px 5px 0 0;
        }

        .submenu li:last-child a {
            border-radius: 0 0 5px 5px;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            padding: 5px;
        }

        main {
            padding: 0 0 40px 0;
        }

.section-title-wrapper{background:linear-gradient(90deg,#ff6b35 0%,#ff6b35 6px,#dadadb 6px,#dadadb 100%);position:sticky;top:102px;z-index:999}
.section-title{max-width:1200px;margin:0 auto;color:#2d6f52;padding:0 30px;font-size:18px;font-weight:700;font-family:'Raleway',sans-serif;height:44px;display:flex;align-items:center}


        .content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 0px;
            margin-top: 45px;
        }

               /* Enlace que envuelve la card */
        .product-card-link {
            text-decoration: none;
            display: block;
            color: inherit;
        }

        .product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 5px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .product-card-link:hover .product-card {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }

        .image-container {
            position: relative;
            overflow: hidden;
			object-fit: contain;
        }

        .product-image {
            width: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .product-card:hover .product-image {
            transform: scale(1.1);
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .product-card:hover .overlay {
            opacity: 1;
        }

        .magnifier {
            width: 40px;
            height: 40px;
            border: 3px solid white;
            border-radius: 50%;
            position: relative;
            transition: transform 0.3s ease;
        }

        .product-card:hover .magnifier {
            transform: scale(1.1);
        }

        .magnifier::before {
            content: '';
            position: absolute;
            width: 5px;
            height: 30px;
            background-color: white;
            bottom: -25px;
            right: -12px;
            transform: rotate(-45deg);
            border-radius: 3px;
        }

        .product-title {
            padding: 20px;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: #f8f9fa;
        }

        footer {
            background: #2a2a2a;
            color: #b8b8b8;
            padding: 50px 0 30px;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-section h3 {
            color: white;
            font-size: 18px;
            margin-bottom: 20px;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: #b8b8b8;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-section ul li a:hover {
            color: #395e3a;
            transform: translateX(5px);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 30px auto 0;
            padding: 20px 30px 0;
            border-top: 1px solid #444;
            text-align: center;
            font-size: 14px;
        }

        .footer-bottom a {
            color: #395e3a;
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        @media (max-width: 968px) {
            .header-container {
                flex-wrap: wrap;
                position: relative;
            }

            .logo {
                order: 1;
            }

            .menu-toggle {
                display: block;
                order: 2;
            }

            nav {
                order: 3;
                width: 100%;
                margin-left: 0;
                margin-top: 15px;
                display: none;
            }

            nav.active {
                display: block;
            }

            .menu {
                flex-direction: column;
                gap: 0;
            }

            .menu > li > a {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }

            .submenu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background-color: rgba(255,255,255,0.1);
                margin-top: 0;
                display: none;
            }

            .menu > li.active .submenu {
                display: block;
            }

            .submenu li a {
                color: white;
                padding-left: 40px;
            }

            .submenu li a:hover {
                background-color: rgba(255,255,255,0.1);
            }

            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 600px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
			.slideshow {
		display: none;
		}

        }
		
		@media (min-width: 768px) {

}
		
		/* ===== SLIDESHOW ===== */
    .slideshow {
      width: 100%;
      max-height: 550px;
      height: 550px;
      position: relative;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .slide.active {
      opacity: 1;
    }

    /* BOTÓN SLIDESHOW */
    .cta-btn {
      position: absolute;
      right: 40px;
      bottom: 40px;
      background: #2d6f52;
      color: #ffffff;
      padding: 16px 28px;
      font-size: 16px;
      font-weight: bold;
      text-decoration: none;
      border-radius: 4px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
      z-index: 10;
    }

    .cta-btn:hover {
      background: #479271;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }

    @media (max-width: 768px) {
      .cta-btn {
        right: 20px;
        bottom: 20px;
        padding: 14px 22px;
        font-size: 14px;
      }
	  
	  /* OCULTAR SLIDESHOW EN CELULARES */
		.slideshow {
		display: none;
		}

    }


    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .slide.active {
      opacity: 1;
    }

    /* Responsive */
      .slideshow {
        height: 350px;
      }
    }