        :root {
            --primary-orange: #FF8530;
            --secondary-orange: #F57C00;
            --dark-grey: #222222;
            --medium-grey: #4A4A4A;
            --light-grey: #F5F5F5;
            --white: #FFFFFF;
            --black: #000000;
            --text-color: #333333;
            --success-green: #25D366;
            --facebook-blue: #1877F2;
            --tiktok-black: #010101;
            --gradient-instagram: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
            --section-padding-large: 100px 0;
            --section-padding-medium: 80px 0;
            --section-padding-small: 60px 0;    
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        html {
            font-size: 16px;
        }
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: var(--white);
            overflow-x: hidden;
        }
        
        main > section {
            display: none;
        }
        .container {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 20px;
            padding-right: 20px;
            width: 100%;
        }
        section {
            padding: var(--section-padding-medium);
        }
        h1, h2, h3, h4, h5, h6 {
            color: var(--dark-grey);
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        h1 { font-size: 3.8rem; }
        h2 { font-size: 3rem; }
        h3 { font-size: 2.4rem; }
        h4 { font-size: 1.8rem; }
        h5 { font-size: 1.5rem; }
        h6 { font-size: 1.2rem; }
        p {
            margin-bottom: 1.5rem;
            color: var(--medium-grey);
        }
        a {
            text-decoration: none;
            color: var(--primary-orange);
            transition: color 0.3s ease-in-out;
        }
        a:hover {
            color: var(--secondary-orange);
        }
        .orange-text {
            color: var(--primary-orange);
        }
        .white-text {
            color: var(--white);
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 32px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
            cursor: pointer;
            font-size: 1.05em;
            white-space: nowrap;
            border: 2px solid transparent;
            text-align: center;
        }
        
        .btn .icon {
            margin-left: 10px;
            display: inline-block;
            transition: transform 0.3s ease;
        }
        .btn:hover .icon {
            transform: translateX(5px);
        }
        .btn-primary {
            background-color: var(--primary-orange);
            color: var(--white);
            border-color: var(--primary-orange);
        }
        .btn-primary:hover {
            background-color: var(--secondary-orange);
            border-color: var(--secondary-orange);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 133, 48, 0.3);
        }
        .btn-secondary {
            background-color: transparent;
            color: var(--primary-orange);
            border-color: var(--primary-orange);
        }
        .btn-secondary:hover {
            background-color: var(--primary-orange);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 133, 48, 0.3);
        }
        
        .header {
            background-color: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            padding-top: 20px;
            padding-bottom: 20px;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: padding 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
        }
        .header.scrolled {
            padding-top: 15px;
            padding-bottom: 15px;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--dark-grey);
            text-decoration: none;
            letter-spacing: -1px;
        }
        .logo span {
            color: var(--primary-orange);
            margin-left: 2px;
        }
        .nav-menu {
            list-style: none;
            display: flex;
            gap: 35px;
        }
        .nav-menu li a {
            text-decoration: none;
            color: var(--medium-grey);
            font-weight: 500;
            font-size: 1.05em;
            position: relative;
            padding-bottom: 5px;
        }
        .nav-menu li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary-orange);
            transition: width 0.3s ease;
        }
        .nav-menu li a:hover::after,
        .nav-menu li a.active::after {
            width: 100%;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: var(--primary-orange);
        }
        
        .nav-menu .dropdown {
            position: relative;
        }
        
        .nav-menu .dropdown i {
            font-size: 0.8em;
            margin-left: 5px;
        }
        .header-contact {
            display: flex;
            align-items: center;
            gap: 25px;
        }
        .phone-number {
            color: var(--medium-grey);
            font-weight: 600;
            text-decoration: none;
            font-size: 1.1em;
            display: flex;
            align-items: center;
        }
        .phone-number svg {
            margin-right: 8px;
            color: var(--primary-orange);
            width: 18px;
            height: 18px;
        }
        .header .btn-cotizar {
            padding: 12px 24px;
            border-radius: 8px;
        }
.hero {
    background-color: var(--light-grey);
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        
        .hero .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 60px;
            position: relative;
            z-index: 2;
        }
        .hero-content {
            flex: 1;
            min-width: 500px;
            color: var(--white);
        }
        .hero-content h1 {
            font-size: 4.5rem;
            margin-bottom: 25px;
            color: var(--white);
        }
        .hero-content p {
            font-size: 1.2em;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 600px;
            line-height: 1.8;
        }
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .hero-image {
            flex: 1;
            min-width: 450px;
            display: flex;
            justify-content: center;
            position: relative;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            position: relative;
            z-index: 2;
        }
        .hero-image .orange-frame {
            position: absolute;
            top: -25px;
            left: -25px;
            width: calc(100% + 50px);
            height: calc(100% + 50px);
            border: 3px solid var(--primary-orange);
            border-radius: 30px;
            z-index: 1;
            transform: rotate(-3deg);
        }
        .premium-badge {
            background-color: var(--white);
            color: var(--primary-orange);
            padding: 10px 22px;
            border-radius: 50px;
            font-size: 1em;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid var(--light-grey);
        }
        .premium-badge svg {
            margin-right: 10px;
            width: 20px;
            height: 20px;
        }
        .disponible-badge {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background-color: var(--white);
            color: var(--text-color);
            padding: 12px 20px;
            border-radius: 50px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            font-weight: 500;
            z-index: 3;
        }
        .disponible-badge::before {
            content: '';
            display: inline-block;
            width: 12px;
            height: 12px;
            background-color: #4CAF50;
            border-radius: 50%;
            margin-right: 10px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
            100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
        }
        .about-section {
            background-color: var(--white);
        }
        .about-section .container {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: center;
        }
        .about-content, .about-vision-mission {
            flex: 1;
            min-width: 400px;
        }
        .about-vision-mission {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .vision-card, .mission-card {
            background-color: var(--light-grey);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid var(--primary-orange);
        }
        .vision-card h3, .mission-card h3 {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .vision-card h3 svg, .mission-card h3 svg {
            color: var(--primary-orange);
            width: 30px;
            height: 30px;
        }
        .stats-section {
            background-color: var(--light-grey);
            padding: var(--section-padding-medium);
            text-align: center;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            padding: 30px;
            background-color: var(--white);
            border-radius: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        }
        
        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        }
        .stat-item svg {
            width: 50px;
            height: 50px;
            color: var(--primary-orange);
            margin-bottom: 15px;
        }
        .stat-item .number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--dark-grey);
        }
        .stat-item .label {
            font-size: 1.1em;
            color: var(--medium-grey);
        }
        .products-intro {
            padding: var(--section-padding-medium);
            padding-bottom: 40px;
            text-align: center;
        }
        .products-intro h2 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        .products-intro p {
            font-size: 1.2em;
            color: var(--medium-grey);
            max-width: 750px;
            margin: 0 auto;
        }
        
        
        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            max-width: 1100px;
            margin: 0 auto;
            background-color: var(--light-grey);
        }
        .carousel-inner {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            border-radius: 20px;
        }
        .carousel-slide {
            min-width: 100%;
            height: 550px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            padding: 60px;
            color: var(--white);
            position: relative;
        }
        .carousel-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.1));
            z-index: 1;
        }
        .slide-content {
            position: relative;
            z-index: 2;
            max-width: 55%;
            text-align: left;
        }
        .slide-content h3 {
            font-size: 3.5rem;
            color: var(--white);
            margin-bottom: 20px;
        }
        .slide-content p {
            font-size: 1.3em;
            color: rgba(255,255,255,0.9);
            margin-bottom: 35px;
        }
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.8);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5em;
            color: var(--primary-orange);
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .carousel-control:hover {
            background-color: var(--white);
            color: var(--secondary-orange);
            transform: translateY(-50%) scale(1.1);
        }
        .carousel-control.prev { left: 30px; }
        .carousel-control.next { right: 30px; }
        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 12px;
        }
        .dot {
            width: 14px;
            height: 14px;
            background-color: #ccc;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.4s ease;
        }
        .dot.active {
            background-color: var(--primary-orange);
            transform: scale(1.2);
        }
        
        #nuestros-productos-detalle {
            background-color: var(--light-grey);
        }
        
        .product-detail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
         .product-card {
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.12);
        }
        .product-card-header {
            padding: 25px;
            border-bottom: 1px solid #eee;
        }
        
        .product-card-header h4 {
            margin-bottom: 0;
            color: var(--dark-grey);
        }
        .product-card-body {
            padding: 25px;
            flex-grow: 1;
        }
        
        .product-card-body p {
            font-size: 0.95em;
            color: var(--medium-grey);
            margin-bottom: 15px;
        }
        
        .product-card-body ul {
            list-style: none;
            padding-left: 0;
        }
        
        .product-card-body ul li {
            padding-left: 25px;
            position: relative;
            margin-bottom: 10px;
        }
        
        .product-card-body ul li::before {
            content: '\2713';
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--primary-orange);
            font-weight: bold;
        }

        /*
        * 1. Estilos Base de la Tarjeta (Tus estilos existentes)
        *********************************************************/
        


        

        /*------------------------------------------------------------------------*/
        
        /* Estilos para el slider de imágenes en productos */
        .product-image-slider {
            position: relative;
            height: 250px;
            overflow: hidden;
            background-color: var(--light-grey);
        }
        
        .product-image-slider .slider-inner {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }
        
        .product-image-slider .slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .product-image-slider .slide img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .product-image-slider .slider-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.7);
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 0.9em;
            color: var(--primary-orange);
            z-index: 10;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .product-image-slider .slider-control:hover {
            background-color: var(--white);
            color: var(--secondary-orange);
        }
        
        .product-image-slider .slider-control.prev { left: 10px; }
        .product-image-slider .slider-control.next { right: 10px; }
        
        .product-image-slider .slider-dots {
            position: absolute;
            bottom: 10px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 8px;
        }
        
        .product-image-slider .dot {
            width: 8px;
            height: 8px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .product-image-slider .dot.active {
            background-color: var(--primary-orange);
            transform: scale(1.2);
        }
        
        .catalog-section {
            padding: var(--section-padding-medium);
            background-color: var(--white);
            text-align: center;
        }
        
        .catalog-section h2 {
            margin-bottom: 20px;
        }
        
        .catalog-section > .container > p {
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 50px;
            font-size: 1.1em;
            color: var(--medium-grey);
        }
        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .catalog-item {
            background-color: var(--white);
            padding: 30px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 25px;
            text-align: left;
            font-size: 1.1em;
            font-weight: 600;
            color: var(--medium-grey);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid #eee;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        }
        .catalog-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-color: var(--primary-orange);
        }
        .catalog-item .number-circle {
            width: 50px;
            height: 50px;
            background-color: var(--primary-orange);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.3em;
            font-weight: 700;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .catalog-item:hover .number-circle {
            background-color: var(--secondary-orange);
            transform: rotate(360deg);
        }
        
        .catalog-item.active {
            background-color: var(--primary-orange);
            color: var(--white);
            border-color: var(--primary-orange);
        }
        .catalog-item.active .number-circle {
            background-color: var(--white);
            color: var(--primary-orange);
        }
        .testimonials-section {
            background-color: var(--light-grey);
            padding: var(--section-padding-large);
            text-align: center;
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        .testimonial-card {
            background-color: var(--white);
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.07);
            text-align: left;
            display: flex;
            flex-direction: column;
            border-top: 5px solid var(--primary-orange);
        }
        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        .testimonial-header img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--white);
            box-shadow: 0 0 0 3px var(--primary-orange);
        }
        .testimonial-info h4 {
            margin-bottom: 2px;
            font-size: 1.3em;
            color: var(--dark-grey);
        }
        .testimonial-info p {
            font-size: 1em;
            color: var(--medium-grey);
            margin-bottom: 0;
        }
        .testimonial-quote {
            font-style: italic;
            color: var(--text-color);
            margin-bottom: 25px;
            line-height: 1.9;
            position: relative;
            padding-left: 35px;
            font-size: 1.05em;
            flex-grow: 1;
        }
        .testimonial-quote::before {
            content: "\201C";
            font-family: 'Georgia', serif;
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 4em;
            color: var(--primary-orange);
            line-height: 1;
            opacity: 0.8;
        }
        .testimonial-rating {
            color: #FFC107;
            font-size: 1.3em;
            display: flex;
            gap: 5px;
        }
        .satisfied-clients-badge {
            display: inline-flex;
            align-items: center;
            background-color: var(--white);
            color: var(--dark-grey);
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 60px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            font-size: 1.1em;
        }
        .satisfied-clients-badge svg {
            color: var(--primary-orange);
            margin-right: 12px;
            width: 24px;
            height: 24px;
        }
        .cta-section-2 {
            background: var(--primary-orange) url('https://www.transparenttextures.com/patterns/cubes.png');
            padding: var(--section-padding-large);
            text-align: center;
            color: var(--white);
        }
        .cta-section-2 h2 {
            color: var(--white);
            font-size: 3.8rem;
            margin-bottom: 25px;
        }
        
        .cta-section-2 h2 span {
            text-decoration: underline;
            text-decoration-color: var(--white);
            text-underline-offset: 8px;
        }
        .cta-section-2 p {
            font-size: 1.3em;
            max-width: 850px;
            margin: 0 auto 45px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
        }
        .cta-section-2 .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-bottom: 70px;
            flex-wrap: wrap;
        }
        .cta-section-2 .btn-whatsapp {
            background-color: var(--dark-grey);
            color: var(--white);
            border-color: var(--dark-grey);
            padding: 18px 36px;
            border-radius: 12px;
        }
        .cta-section-2 .btn-whatsapp:hover {
            background-color: var(--black);
            border-color: var(--black);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        
        .cta-section-2 .btn-whatsapp svg {
            width: 20px;
            height: 20px;
            margin-right: 10px;
        }
        .cta-section-2 .btn-products {
            background-color: transparent;
            color: var(--white);
            border-color: var(--white);
            padding: 18px 36px;
            border-radius: 12px;
        }
        .cta-section-2 .btn-products:hover {
            background-color: var(--white);
            color: var(--primary-orange);
        }
        .cta-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .feature-item .icon-circle {
            background-color: rgba(255, 255, 255, 0.2);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }
        
        .feature-item .icon-circle svg {
            font-size: 2.5em;
            color: var(--white);
            width: 40px;
            height: 40px;
        }
        
        .feature-item:hover .icon-circle {
            background-color: rgba(255, 255, 255, 0.3);
            transform: scale(1.1) rotate(15deg);
        }
        .feature-item h3 {
            color: var(--white);
            font-size: 1.6em;
            margin-bottom: 15px;
        }
        .feature-item p {
            font-size: 1.05em;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 0;
            line-height: 1.6;
        }
        .contact-social-section {
            background-color: var(--dark-grey);
            padding: var(--section-padding-large);
            text-align: center;
            color: var(--white);
        }
        .contact-social-section h2 {
            color: var(--white);
            font-size: 3rem;
            margin-bottom: 20px;
        }
        .contact-social-section p {
            font-size: 1.2em;
            margin-bottom: 60px;
            color: rgba(255, 255, 255, 0.8);
        }
        .social-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .social-card {
            background-color: #333333;
            padding: 40px;
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.25);
            transition: transform 0.3s ease;
        }
        
        .social-card:hover {
            transform: translateY(-10px);
        }
        .social-card .icon-circle {
            background-color: var(--primary-orange);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 25px;
            font-size: 2.5em;
            color: var(--white);
            transition: transform 0.3s ease;
        }
        
        .social-card:hover .icon-circle {
            transform: scale(1.1);
        }
        
        .social-card .icon-circle svg {
            width: 40px;
            height: 40px;
        }
        .social-card h3 {
            color: var(--white);
            font-size: 1.8em;
            margin-bottom: 15px;
        }
        .social-card p {
            font-size: 1.05em;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 25px;
            flex-grow: 1;
        }
        .social-card .btn {
            width: fit-content;
            padding: 12px 30px;
            font-weight: 500;
        }
        .social-card .btn-whatsapp {
            background-color: var(--success-green);
            border-color: var(--success-green);
            color: var(--white);
        }
        .social-card .btn-whatsapp:hover {
            background-color: #1DA851;
            border-color: #1DA851;
        }
        .social-card .btn-facebook {
            background-color: var(--facebook-blue);
            border-color: var(--facebook-blue);
            color: var(--white);
        }
        .social-card .btn-facebook:hover {
            background-color: #1562C5;
            border-color: #1562C5;
        }
        
        .social-card .btn-tiktok {
            background-color: var(--tiktok-black);
            border-color: var(--tiktok-black);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        .social-card .btn-tiktok::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 300%;
            height: 300%;
            background: conic-gradient(#00f2ea, #ff0050, #00f2ea);
            transform: translate(-50%, -50%);
            animation: rotate-tiktok 4s linear infinite;
        }
        
        .social-card .btn-tiktok span {
            position: relative;
            z-index: 1;
            display: inline-block;
            background: var(--tiktok-black);
            padding: 12px 30px;
            border-radius: 8px;
            margin: 2px;
            width: calc(100% - 4px);
            height: calc(100% - 4px);
        }
        @keyframes rotate-tiktok {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }
        .social-card .btn-instagram {
            background: var(--gradient-instagram);
            border: none;
            color: var(--white);
        }
        .social-card .btn-instagram:hover {
            opacity: 0.9;
            box-shadow: 0 8px 15px rgba(220, 39, 67, 0.4);
        }
        .social-card .btn-instagram span {
            color: var(--white);
        }
        .footer {
            background-color: #1A1A1A;
            color: rgba(255, 255, 255, 0.7);
            padding: 80px 0 30px;
            font-size: 1em;
        }
        .footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 60px;
        }
        .footer-col h3 {
            color: var(--white);
            font-size: 1.5em;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-orange);
        }
        .footer-col .logo {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--white);
        }
        .footer-col p {
            margin-bottom: 20px;
            line-height: 1.8;
        }
        .footer-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        .footer-info-item svg {
            margin-right: 15px;
            color: var(--primary-orange);
            font-size: 1.2em;
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 5px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 12px;
        }
        .footer-col ul li a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.3s ease, padding-left 0.3s ease;
            position: relative;
        }
        
        .footer-col ul li a:hover {
            color: var(--primary-orange);
            padding-left: 10px;
        }
        
        .footer-col ul li a::before {
            content: '»';
            position: absolute;
            left: -5px;
            opacity: 0;
            transition: opacity 0.3s ease, left 0.3s ease;
        }
        
        .footer-col ul li a:hover::before {
            opacity: 1;
            left: 0;
        }
        .footer-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 25px;
        }
        .footer-feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-feature-item svg {
            color: var(--primary-orange);
            width: 18px;
            height: 18px;
        }
        .footer-social-icons {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        .footer-social-icons a {
            color: var(--white);
            font-size: 1.5em;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        
        .footer-social-icons a svg {
            width: 22px;
            height: 22px;
        }
        .footer-social-icons a:hover {
            background-color: var(--primary-orange);
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 30px;
            text-align: center;
            font-size: 0.9em;
        }
        
        .footer-bottom p {
            margin: 0;
        }
        
        .footer-bottom a {
            font-weight: bold;
        }
        @media (max-width: 1024px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2.5rem; }
            .hero-content h1 { font-size: 3.5rem; }
            
            .nav-menu { gap: 25px; }
            .hero-content, .hero-image {
                min-width: unset;
                flex-basis: 100%;
                text-align: center;
            }
            
            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            .hero-image { margin-top: 50px; }
            .carousel-slide {
                height: 450px;
                padding: 40px;
            }
            .slide-content h3 { font-size: 2.5rem; }
            .slide-content p { font-size: 1.1em; }
            .slide-content { max-width: 80%; margin: 0 auto; text-align: center; }
            .carousel-slide::before { background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1)); }
            
            .footer .container {
                grid-template-columns: 1fr 1fr;
            }
            .footer-col:first-child {
                grid-column: 1 / -1;
            }
        }
        @media (max-width: 768px) {
            .header .container {
                flex-direction: column;
                gap: 20px;
            }
            .header .nav-menu {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px 20px;
                width: 100%;
                border-top: 1px solid #eee;
                border-bottom: 1px solid #eee;
                padding: 15px 0;
            }
            .header-contact {
                width: 100%;
                justify-content: center;
            }
            
            .hero { padding-top: 250px; }
            
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2.2rem; }
            h3 { font-size: 1.8rem; }
            .hero-content h1 { font-size: 3rem; }
            .stats-grid, .testimonials-grid, .social-cards-grid, .cta-features, .product-detail-grid, .catalog-grid {
                grid-template-columns: 1fr;
            }
            .about-section .container {
                flex-direction: column;
            }
            .carousel-control.prev { left: 15px; }
            .carousel-control.next { right: 15px; }
            .cta-section-2 h2 { font-size: 2.8rem; }
            .cta-section-2 .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            .cta-section-2 .btn {
                width: 80%;
                max-width: 350px;
            }
            
            .footer .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-col {
                align-items: center;
            }
            .footer-col h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .footer-info-item {
                justify-content: center;
            }
            .footer-features {
                grid-template-columns: 1fr;
            }
            .footer-social-icons {
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            .hero-content h1 { font-size: 2.5rem; }
            .hero-content p, .products-intro p, .cta-section-2 p { font-size: 1em; }
            .btn {
                padding: 14px 24px;
                font-size: 0.95em;
            }
            .premium-badge { font-size: 0.85em; }
            .disponible-badge {
                font-size: 0.8em;
                padding: 8px 14px;
                bottom: 15px;
                right: 15px;
            }
            .carousel-slide {
                height: 350px;
                padding: 25px;
            }
            .slide-content h3 { font-size: 1.8rem; }
            .slide-content p { font-size: 0.95em; }
            .carousel-control {
                width: 40px;
                height: 40px;
                font-size: 1.2em;
            }
            .dot {
                width: 10px;
                height: 10px;
            }
            .stat-item .number { font-size: 2.5rem; }
            .stat-item .label { font-size: 1em; }
            .hero { padding-top: 230px; padding-bottom: 60px; }
        }

.section-hero {
    padding: 160px 0 80px;
    background-color: var(--dark-grey);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}
    .section-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(34, 34, 34, 0.85);
        z-index: 1;
    }
    .section-hero .container {
        position: relative;
        z-index: 2;
    }
    .section-hero h2 {
        color: var(--white);
        font-size: 3.5rem;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    .section-hero .breadcrumb {
        font-size: 1.1em;
        color: rgba(255, 255, 255, 0.8);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .section-hero .breadcrumb a {
        color: var(--primary-orange);
        text-decoration: none;
        transition: text-decoration 0.3s ease;
    }
    .section-hero .breadcrumb a:hover {
        text-decoration: underline;
    }
    .section-hero .breadcrumb span {
        color: var(--white);
        font-weight: 500;
    }
    
    /* Media Queries para responsividad del Hero General */
    @media (max-width: 768px) {
        .section-hero {
            padding: 140px 0 70px;
        }
        .section-hero h2 {
            font-size: 2.8rem;
        }
    }
    @media (max-width: 480px) {
        .section-hero {
            padding: 120px 0 60px;
        }
        .section-hero h2 {
            font-size: 2.2rem;
        }
        .section-hero .breadcrumb {
            font-size: 1em;
        }
    }

    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        background-color: #25d366;
        color: #FFF;
        border-radius: 50%;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

    .whatsapp-float img {
        width: 35px;
        height: 35px;
    }






/* Imágenes de fondo específicas para cada sección */

.hero-nosotros {
    background-image: linear-gradient(rgba(34, 34, 34, 0.7), rgba(34, 34, 34, 0.7)), 
                      url('Maria.jpeg');
}

.hero-productos {
    background-image: linear-gradient(rgba(34, 34, 34, 0.7), rgba(34, 34, 34, 0.7)), 
                      url('Ana.jpeg');
}

.hero-catalogo {
    background-image: linear-gradient(rgba(34, 34, 34, 0.7), rgba(34, 34, 34, 0.7)), 
                      url('Carlos.jpeg');
}

.hero-testimonios {
    background-image: linear-gradient(rgba(34, 34, 34, 0.7), rgba(34, 34, 34, 0.7)), 
                      url('Maria.jpeg');
}

.hero-contacto {
    background-image: linear-gradient(rgba(34, 34, 34, 0.7), rgba(34, 34, 34, 0.7)), 
                      url('Ana.jpeg');
}


/* 1. Estilos para el contenedor de la imagen si aún no es circular */
.testimonial-header img {
    /* Define el tamaño del círculo de la imagen */
    width: 80px; 
    height: 80px;
    
    /* Hace la imagen circular */
    border-radius: 50%;
    
    /* Esconde las partes de la imagen que se salen del círculo */
    overflow: hidden; 
    
    /* Permite usar object-fit y object-position */
    display: block; 
}

/* 2. Propiedades CRUCIALES para cuadrar el rostro */
.testimonial-header img {
    /* **object-fit: cover** asegura que la imagen cubra completamente el contenedor (80x80px) sin distorsionarse, recortando el exceso. */
    object-fit: cover; 
    
    /* **object-position** ajusta el punto de enfoque. 
       - 'center' (el valor por defecto) a menudo funciona.
       - **'center top'** (recomendado para muchos retratos) mueve el enfoque hacia arriba, centrando el rostro.
       - Puedes experimentar con 'center bottom', 'center 20%' o '25% 25%' si es necesario.
    */
    object-position: center top; 
}

/* 3. Ajuste visual (según el borde naranja de tu imagen de ejemplo) */
.testimonial-header img {
    /* Añade el borde naranja alrededor de la imagen */
    border: 3px solid #ff7f00; 

}


/*
 * 1. Estilos de la Sección y Contenedor Principal
 *************************************************/
.contact-social-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f8f8f8; /* Un fondo ligeramente gris claro para destacar la sección */
}

.contact-social-section h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.contact-social-section p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
}

/*
 * 2. Estilos de la Cuadrícula y las Tarjetas
 *************************************************/
.social-cards-grid {
    display: grid;
    /* Define 4 columnas iguales en pantallas grandes. Cambiará a 2 o 1 en media queries. */
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px; /* Limita el ancho de la cuadrícula */
    margin: 0 auto;
}

.social-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Sombra suave para efecto "flotante" */
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-card:hover {
    transform: translateY(-5px); /* Pequeño efecto al pasar el ratón */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.social-card h3 {
    margin-top: 15px;
    font-size: 1.5em;
    color: #333;
}

.social-card p {
    color: #777;
    font-size: 0.95em;
    min-height: 50px; /* Asegura que todas las tarjetas tengan una altura mínima similar */
    margin-bottom: 20px;
}

/*
 * 3. Estilos de los Íconos Circulares
 *************************************************/
.icon-circle {
    /* Define el tamaño del círculo */
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1; /* Color de fondo claro para el círculo */
}

.icon-circle svg {
    /* Tamaño del ícono dentro del círculo */
    width: 28px; 
    height: 28px;
}

/* Aplicar el color de la marca al círculo del ícono */
.social-card:nth-child(1) .icon-circle { background-color: #e6ffeb; } /* WhatsApp claro */
.social-card:nth-child(2) .icon-circle { background-color: #e5f0ff; } /* Facebook claro */
.social-card:nth-child(3) .icon-circle { background-color: #fce5ff; } /* Instagram claro */
.social-card:nth-child(4) .icon-circle { background-color: #f8efff; } /* TikTok claro */


/*
 * 4. Estilos de los Botones (CTA)
 *************************************************/
.social-card a.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    width: 100%;
    margin-top: auto; /* Empuja el botón hacia la parte inferior de la tarjeta */
}

/* Colores de marca para los botones */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
}
.btn-whatsapp:hover {
    background-color: #1DA851;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

.btn-facebook {
    background-color: #1877F2;
    color: white;
}
.btn-facebook:hover {
    background-color: #145db4;
    box-shadow: 0 4px 10px rgba(24, 119, 242, 0.4);
}

.btn-instagram {
    /* Instagram usa un gradiente para ser auténtico */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border: none;
}
.btn-instagram:hover {
    opacity: 0.9;
    box-shadow: 0 4px 10px rgba(220, 39, 67, 0.4);
}

.btn-tiktok {
    background-color: #000; /* Negro para TikTok, contrastando con el ícono */
    color: white;
}
.btn-tiktok:hover {
    background-color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}


/* Colores de los Íconos SVG */
.social-card:nth-child(1) .icon-circle svg { fill: #25D366; } /* WhatsApp */
.social-card:nth-child(2) .icon-circle svg { fill: #1877F2; } /* Facebook */
.social-card:nth-child(3) .icon-circle svg { fill: #dc2743; } /* Instagram (un color del gradiente) */
.social-card:nth-child(4) .icon-circle svg { fill: #000; } /* TikTok */





/*
 * 5. Media Queries para Responsividad
 *************************************************/
@media (max-width: 992px) {
    .social-cards-grid {
        /* Pasa a 2 columnas en tablets */
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .social-cards-grid {
        /* Pasa a 1 columna en móviles */
        grid-template-columns: 1fr;
    }
}


