﻿:root {
            --color_orange: #FF9F1C;
            --color_red: #ff4b4b;
            --color_green: #4CAF50;
            --color_orange_opacity: #FF9F1Caa;
            --color_black: #2c3e50;
            --color_white: #ffffff;
            --color_metal: #718096;
            --color_background: #f8f9fa;
            --color_bg_dark: #1a202c;
            --color_accent: #FBD38D;
            --color-cream: #fef9e7;
            --color-light_gray: #ecf0f1;
            --color-dark_gray: #2c3e50;
            --font_title: "Montserrat", sans-serif;
            --font_text: "Lato", sans-serif;
            
            /* Breakpoints responsive mejorados */
            --bp-mobile-small: 360px;
            --bp-mobile: 480px;
            --bp-tablet-small: 640px;
            --bp-tablet: 768px;
            --bp-desktop-small: 1024px;
            --bp-desktop: 1200px;
            --bp-desktop-large: 1440px;
        }

        * { 
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        /* Tipografï¿½a responsive mejorada */
        body {
            font-family: var(--font_text);
            color: var(--color_black);
            line-height: 1.6;
            font-size: 15px;
            letter-spacing: 0.02em;
            overflow-x: hidden;
        }

        h1, h2, h3 { 
            font-family: var(--font_title);
            font-weight: bold;
            line-height: 1.2;
            margin-bottom: 1em;
            letter-spacing: -0.02em;
        }

        h1 { 
            font-size: clamp(28px, 4.2vw, 40px);
            line-height: 1.1;
        }
        
        h2 { 
            font-size: clamp(22px, 3.6vw, 30px);
            line-height: 1.15;
        }
        
        h3 { 
            font-size: clamp(16px, 2.8vw, 20px);
            line-height: 1.2;
        }

        p {
            font-size: clamp(13px, 2.2vw, 15px);
            line-height: 1.6;
            margin-bottom: 1em;
        }

        /* Responsive especï¿½fico para tipografï¿½a */
        @media (max-width: 1024px) {
            body {
                font-size: 15px;
                line-height: 1.5;
            }
            
            h1 { font-size: clamp(28px, 4.5vw, 42px); }
            h2 { font-size: clamp(22px, 3.5vw, 32px); }
            h3 { font-size: clamp(16px, 2.8vw, 22px); }
            
            p {
                font-size: clamp(14px, 2.2vw, 15px);
                line-height: 1.5;
            }
        }

        @media (max-width: 768px) {
            body {
                font-size: 14px;
                line-height: 1.5;
                letter-spacing: 0.01em;
            }
            
            h1 { 
                font-size: clamp(24px, 6vw, 36px);
                margin-bottom: 0.8em;
            }
            
            h2 { 
                font-size: clamp(20px, 5vw, 28px);
                margin-bottom: 0.8em;
            }
            
            h3 { 
                font-size: clamp(16px, 4vw, 20px);
                margin-bottom: 0.6em;
            }
            
            p {
                font-size: clamp(13px, 3vw, 14px);
                line-height: 1.5;
                margin-bottom: 0.8em;
            }
        }

        @media (max-width: 640px) {
            h1 { 
                font-size: clamp(22px, 7vw, 32px);
                line-height: 1.1;
            }
            
            h2 { 
                font-size: clamp(18px, 6vw, 24px);
                line-height: 1.2;
            }
            
            h3 { 
                font-size: clamp(15px, 5vw, 18px);
                line-height: 1.3;
            }
        }

        @media (max-width: 480px) {
            body {
                font-size: 13px;
                line-height: 1.4;
            }
            
            h1 { 
                font-size: clamp(20px, 8vw, 28px);
                margin-bottom: 0.6em;
                letter-spacing: -0.01em;
            }
            
            h2 { 
                font-size: clamp(16px, 7vw, 22px);
                margin-bottom: 0.6em;
            }
            
            h3 { 
                font-size: clamp(14px, 6vw, 16px);
                margin-bottom: 0.5em;
            }
            
            p {
                font-size: clamp(12px, 4vw, 13px);
                line-height: 1.4;
                margin-bottom: 0.6em;
            }
        }

        @media (max-width: 360px) {
            body {
                font-size: 12px;
                line-height: 1.4;
            }
            
            h1 { font-size: clamp(18px, 9vw, 24px); }
            h2 { font-size: clamp(15px, 8vw, 20px); }
            h3 { font-size: clamp(13px, 7vw, 15px); }
            
            p {
                font-size: clamp(11px, 5vw, 12px);
                line-height: 1.3;
            }
        }

        .overlay {
            width: 100%;
            height: 100%;
            position: fixed;
            top: 0;
            left: 0;
            opacity: 0;
            visibility: hidden;
            z-index: -300;
            background: rgba(0, 0, 0, 0.8);
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            z-index: 300;
            visibility: visible;
        }

        /* HEADER STYLES */
        .social_header_bar {
            width: 100%;
            height: 45px;
            background: var(--color_black);
            opacity: 0.5;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            position: relative;
            z-index: 500;
        }

        .btn_menu {
            width: 24px;
            height: 24px;
            cursor: pointer;
            filter: invert(100%);
            display: none;
        }

        .contact_info {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 12px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .info {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .info_icon {
            width: 18px;
            height: 18px;
        }

        .info_link {
            color: var(--color_white);
            font-size: 14px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info_link:hover {
            color: var(--color_orange);
        }

        .social_container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .social_text {
            color: var(--color_white);
            font-size: 14px;
        }

        .social_link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            color: var(--color_white);
            transition: all 0.3s ease;
            border-radius: 6px;
        }

        .social_link:hover {
            background: var(--color_orange);
            transform: translateY(-2px);
        }

        .social_icon {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .header {
            width: 100%;
            height: 90px;
            position: fixed;
            top: 45px; /* Altura del social header */
            left: 0;
            padding: 0 5%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            z-index: 999;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header.active {
            top: 0;
            height: 70px;
        }

        /* Ocultar header al hacer scroll hacia abajo */
        .header.hide {
            transform: translateY(-100%);
        }

        .header.active .logo_container {
            height: 70px;
        }

        .header.active + main .section_banner {
            padding-top: 100px;
        }

        .logo_container {
            height: 280px;
            display: flex;
            align-items: center;
        }

        .logo_icon {
            height: 100%;
            width: auto;
            object-fit: contain;
        }

        .nav_bar {
            display: flex;
            align-items: center;
        }

        /* BotÃ³n Hamburguesa */
/* Menu hamburguesa - Responsive mejorado */
.menu-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px; /* Mejor para dispositivos tÃ¡ctiles */
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.menu-burger:hover {
    background-color: rgba(250, 170, 1, 0.1);
}

.menu-burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-burger:hover span {
    background: #faaa01;
}

/* AnimaciÃ³n del menÃº hamburguesa */
.menu-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-burger.active span:nth-child(2) {
    opacity: 0;
}

.menu-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* MenÃº Fullscreen Overlay - Responsive mejorado */
.fullscreen-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(2px);
            z-index: 1201;
            display: none; /* oculta completamente cuando estÃ¡ inactiva */
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fullscreen-menu.active {
            display: block;
            opacity: 1;
            visibility: visible;
}

/* Header del menÃº - Responsive */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 80px;
}

.menu-logo {
    width: 140px;
    flex-shrink: 0;
}

.menu-logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    transition: transform 0.3s ease;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close:hover {
    transform: rotate(90deg);
    background-color: rgba(255, 255, 255, 0.1);
}

/* NavegaciÃ³n del menÃº - Responsive */
.fullscreen-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    min-height: calc(100vh - 200px);
}

.fullscreen-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
}

.fullscreen-menu-item {
    margin: 25px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.fullscreen-menu-item:nth-child(1) { animation-delay: 0.1s; }
.fullscreen-menu-item:nth-child(2) { animation-delay: 0.2s; }
.fullscreen-menu-item:nth-child(3) { animation-delay: 0.3s; }
.fullscreen-menu-item:nth-child(4) { animation-delay: 0.4s; }
.fullscreen-menu-item:nth-child(5) { animation-delay: 0.5s; }

.fullscreen-menu-link {
    color: #ffffff;
    font-size: 28px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    min-height: 44px;
    line-height: 1.2;
}

.fullscreen-menu-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #faaa01;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.fullscreen-menu-link:hover {
    color: #faaa01;
    background-color: rgba(255, 255, 255, 0.05);
}

.fullscreen-menu-link:hover::after {
    width: 60%;
}

/* Footer del menÃº - Responsive */
.menu-footer {
    padding: 25px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive especÃ­fico para el menÃº */
@media (max-width: 1024px) {
    .menu-burger {
        display: flex;
    }
    
    .nav_bar {
        display: none;
    }
}

@media (max-width: 768px) {
    .menu-header {
        padding: 20px 25px;
        min-height: 70px;
    }
    
    .menu-logo {
        width: 120px;
    }
    
    .fullscreen-nav {
        padding: 20px 15px;
    }
    
    .fullscreen-menu-link {
        font-size: 24px;
        padding: 10px 16px;
    }
    
    .menu-footer {
        padding: 20px 15px;
        min-height: 70px;
    }
}

@media (max-width: 640px) {
    .menu-header {
        padding: 15px 20px;
        min-height: 60px;
    }
    
    .menu-logo {
        width: 100px;
    }
    
    .menu-close {
        width: 40px;
        height: 40px;
        padding: 10px;
    }
    
    .fullscreen-menu-item {
        margin: 20px 0;
    }
    
    .fullscreen-menu-link {
        font-size: 22px;
        padding: 8px 14px;
    }
}

@media (max-width: 480px) {
    .menu-burger {
        width: 40px;
        height: 40px;
        padding: 6px;
    }
    
    .menu-burger span {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }
    
    .menu-header {
        padding: 12px 15px;
        min-height: 56px;
    }
    
    .menu-logo {
        width: 90px;
    }
    
    .menu-close {
        width: 36px;
        height: 36px;
        padding: 8px;
    }
    
    .fullscreen-nav {
        padding: 15px 10px;
        min-height: calc(100vh - 140px);
    }
    
    .fullscreen-menu-item {
        margin: 15px 0;
    }
    
    .fullscreen-menu-link {
        font-size: 20px;
        padding: 6px 12px;
    }
    
    .menu-footer {
        padding: 15px 10px;
        min-height: 60px;
    }
}

@media (max-width: 360px) {
    .fullscreen-menu-link {
        font-size: 18px;
        padding: 0;
    }
    
    .fullscreen-menu-item {
        margin: 12px 0;
    }
}

.menu-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #faaa01;
    color: #faaa01;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-cta-button:hover {
    background: #faaa01;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(250, 170, 1, 0.3);
}

/* AnimaciÃ³n */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .menu-burger {
        display: flex;
    }
    
    .fullscreen-menu-link {
        font-size: 24px;
    }
    
    .menu-header {
        padding: 20px;
    }
    
    .fullscreen-menu-item {
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .fullscreen-menu-link {
        font-size: 20px;
    }
    
    .menu-logo {
        width: 120px;
    }
    
    .menu-cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* Prevenir scroll cuando el menÃº estÃ¡ abierto */
body.menu-open {
    overflow: hidden;
}
        .menu {
            display: flex;
            align-items: center;
            gap: 30px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .menu_link {
            color: #2c3e50;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .menu_link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #faaa01;
            transition: width 0.3s ease;
        }

        .menu_link:hover {
            color: #faaa01;
        }

        .menu_link:hover::after {
            width: 100%;
        }

        .contact_btn {
            background: #faaa01;
            color: #ffffff;
            padding: 12px 28px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 4px 15px rgba(250, 170, 1, 0.2);
        }

        .contact_btn:hover {
            background: #e68a00;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(250, 170, 1, 0.2);
        }

        .btn_menu_close {
            display: none;
        }

        /* ===== BANNER SECTION MODERNO ===== */
        .section_banner {
            width: 100%;
            height: 100vh;
            min-height: 700px;
            margin-top: 0;
            position: relative;
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
            padding: 80px 5% 0;
            background: linear-gradient(135deg, 
                rgba(26, 32, 44, 0.1) 0%, 
                rgba(45, 55, 72, 0.05) 30%,
                rgba(255, 159, 28, 0.05) 70%,
                rgba(255, 179, 71, 0.1) 100%
            );
            overflow: hidden;
            box-sizing: border-box;
        }

        .section_banner::before {
            content: '';
            display: none;
        }

        .banner_content {
            position: relative;
            z-index: 10;
            max-width: 500px;
            padding: 60px 20px 40px 0;
            text-align: right;
            margin-top: -20px;
            word-wrap: break-word;
            overflow-wrap: break-word;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(5px);
        }

        .banner_img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            display: block;
            opacity: 0.85;
        }

        .title {
            color: var(--color_white);
            font-family: var(--font_title);
            font-weight: 800;
            font-size: clamp(28px, 4.5vw, 58px);
            line-height: 1.1;
            margin: 0 0 20px 0;
            text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
            text-align: right;
            filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.6));
            word-wrap: break-word;
            hyphens: auto;
        }

        .sub_title {
            color: rgba(255, 255, 255, 0.95);
            font-family: var(--font_text);
            font-weight: 400;
            font-size: clamp(16px, 2vw, 22px);
            line-height: 1.4;
            margin: 0 0 35px 0;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            text-align: right;
            filter: drop-shadow(1px 1px 6px rgba(0, 0, 0, 0.5));
            word-wrap: break-word;
        }

        .cta {
            background: linear-gradient(135deg, var(--color_orange) 0%, #ffb84d 100%);
            color: var(--color_white);
            padding: 18px 36px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            font-family: var(--font_title);
            display: inline-flex;
            align-items: center;
            gap: 15px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(255, 159, 28, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            float: right;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .cta:hover::before {
            left: 100%;
        }

        .cta:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 159, 28, 0.5);
            background: linear-gradient(135deg, #4CAF50 0%, #66bb6a 100%);
        }

        .cta_icon {
            width: 28px;
            height: 28px;
            filter: brightness(0) invert(1);
        }

        .cta_text {
            font-weight: 700;
        }

        .section_banner.scrolled {
            padding-top: 100px;
        }
        /* PRODUCTS SECTION - NEW DESIGN */
.section_products {
    width: 100%;
    padding: 80px 5%;
    /* Fondo mÃ¡s suave para reducir el brillo */
    background: #f3f4f6;
}

.section_products_header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.products_title {
    font-size: clamp(28px, 6vw, 40px);
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 15px;
    text-wrap: balance;
    word-break: break-word;
    hyphens: auto;
}

.products_subtitle {
    font-size: clamp(14px, 3.8vw, 18px);
    color: #7f8c8d;
    margin-bottom: 40px;
}

.product_img_wrapper {
  position: relative;
  width: fit-content;
}

.product_img_wrapper .product_img {
  display: block;
  width: 100%;
  transition: opacity 0.3s ease;
}

.product_img_wrapper .hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product_img_wrapper:hover .hover {
  opacity: 1;
}

/* ===== CONTACT FORM STYLES ===== */
.section_contact {
    width: 100%;
    padding: 80px 5% 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.section_contact_title {
    font-size: clamp(28px, 5vw, 42px);
    color: #2c3e50;
    font-family: var(--font_title);
    font-weight: 700;
    text-align: center;
    margin: 0;
    position: relative;
}

.section_contact_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color_orange), #ffb84d);
    border-radius: 2px;
}

.contact_form {
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Formularios - Optimizados para dispositivos tÃ¡ctiles */
.form_item {
    position: relative;
    margin-bottom: 14px;
}

.form_input {
    width: 100%;
    padding: 14px 14px;
    font-size: 16px; /* Evita zoom en iOS */
    font-family: var(--font_text);
    color: #2d3748;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e2e8f0;
    border-radius: 0;
    outline: none;
    transition: all 0.3s ease;
    resize: none;
    box-sizing: border-box;
    line-height: 1.4;
    min-height: 50px; /* Uniforme entre ambos formularios */
    -webkit-appearance: none; /* Elimina estilos nativos de iOS */
    appearance: none;
}

.form_textarea {
    min-height: 110px;
    font-family: var(--font_text);
    line-height: 1.5;
    padding-top: 14px;
    resize: vertical; /* Permite redimensionar solo verticalmente */
}

.form_input:focus {
    border-color: var(--color_orange);
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0 0 0 3px rgba(255, 159, 28, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.05);
}

.form_input:focus + .form_label,
.form_label.active {
    top: -12px;
    left: 20px;
    font-size: 12px;
    color: var(--color_orange);
    background: rgba(255, 255, 255, 1);
    padding: 4px 8px;
    font-weight: 600;
    border-radius: 6px;
}

.form_label {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #718096;
    font-family: var(--font_text);
    font-weight: 500;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    z-index: 1;
    white-space: nowrap;
}

.form_textarea + .form_label {
    top: 28px;
    transform: translateY(0);
}

.form_submit {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--color_orange) 0%, #ffb84d 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font_text);
    border: none;
    border-radius: 0;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    margin-top: 12px;
    min-height: 52px; /* Mejor para dispositivos tactiles */
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent; /* Elimina highlight azul en iOS */
}

.form_submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.form_submit:hover::before {
    left: 100%;
}

.form_submit:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(255, 159, 28, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.form_submit:active {
    transform: translateY(0px);
}

.form_submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Estilos unificados para adjuntar CV */
.file_actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 4px 0 8px 0;
}

.file_button {
    padding: 12px 16px;
    background: linear-gradient(135deg, #FF9F1C 0%, #ffb84d 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font_text);
}

.file_button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 159, 28, 0.25);
}

.file_button:focus-visible {
    outline: 2px solid var(--color_orange);
    outline-offset: 2px;
}

.file_name {
    color: #64748b;
    font-size: 14px;
    font-family: var(--font_text);
}

/* Responsive para formularios */
@media (max-width: 1024px) {
    .form_item {
        margin-bottom: 26px;
    }
    
    .form_input {
        padding: 18px 16px;
        font-size: 16px;
        min-height: 50px;
    }
    
    .form_textarea {
        min-height: 110px;
    }
    
    .form_submit {
        padding: 16px 22px;
        min-height: 50px;
    }
}

@media (max-width: 768px) {
    .form_item {
        margin-bottom: 24px;
    }
    
    .form_input {
        padding: 16px 14px;
        border-radius: 10px;
        min-height: 48px;
    }
    
    .form_textarea {
        min-height: 100px;
        padding-top: 16px;
    }
    
    .form_label {
        left: 20px;
    }
    
    .form_input:focus + .form_label,
        .form_label.active {
        left: 14px;
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .form_submit {
        padding: 15px 20px;
        font-size: 15px;
        border-radius: 10px;
        min-height: 48px;
    }
}

@media (max-width: 640px) {
    .form_item {
        margin-bottom: 22px;
    }
    
    .form_input {
        padding: 14px 12px;
        min-height: 46px;
    }
    
    .form_textarea {
        min-height: 90px;
        padding-top: 14px;
    }
    
    .form_textarea + .form_label {
        top: 24px;
    }
    
    .form_submit {
        padding: 14px 18px;
        min-height: 46px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .form_item {
        margin-bottom: 20px;
    }
    
    .form_input {
        padding: 12px 10px;
        font-size: 16px; /* Mantener 16px para evitar zoom */
        border-radius: 8px;
        min-height: 44px;
    }
    
    .form_textarea {
        min-height: 80px;
        padding-top: 12px;
    }
    
    .form_label {
        left: 12px;
        font-size: 15px;
    }
    
    .form_input:focus + .form_label,
        .form_label.active {
        left: 10px;
        font-size: 10px;
        padding: 2px 4px;
    }
    
    .form_textarea + .form_label {
        top: 20px;
    }
    
    .form_submit {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 8px;
        min-height: 44px;
        margin-top: 8px;
    }
}

@media (max-width: 360px) {
    .form_input {
        padding: 10px 8px;
        min-height: 42px;
    }
    
    .form_textarea {
        min-height: 70px;
        padding-top: 10px;
    }
    
    .form_label {
        left: 10px;
        font-size: 14px;
    }
    
    .form_submit {
        padding: 10px 14px;
        min-height: 42px;
    }
}

/* Form message styles */
.form_msg {
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.form_msg.active {
    opacity: 1;
    transform: translateY(0);
}

.form_msg.success {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border-left-color: #4caf50;
}

.form_msg.error {
    background: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border-left-color: #f44336;
}

/* Validation states */
.form_input.valid {
    border-color: #4caf50;
    background: rgba(76, 175, 80, 0.05);
}

.form_input.valid:focus {
    border-color: #4caf50;
    box-shadow: 
        0 0 0 3px rgba(76, 175, 80, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.05);
}

.form_input.invalid {
    border-color: #f44336;
    background: rgba(244, 67, 54, 0.05);
    animation: shake 0.3s ease;
}

.form_input.invalid:focus {
    border-color: #f44336;
    box-shadow: 
        0 0 0 3px rgba(244, 67, 54, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.05);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

/* Contact text container */
.contact_text_container {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid rgba(37, 211, 102, 0.2);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.contact_text_container:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.15);
}

.contact_text {
    font-size: 16px;
    font-weight: 600;
    color: #25d366;
    margin: 0;
}

.contact_text_container .contact_icon {
    width: 24px;
    height: 24px;
}

/* ===== CAREERS SECTION ===== */
.section_careers {
    width: 100%;
    background: linear-gradient(135deg, var(--color_cream) 0%, var(--color_light_gray) 100%);
    padding: 80px 5%;
    text-align: center;
}

.section_careers_title {
    color: var(--color_dark_gray);
    font-family: var(--font_title);
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 15px 0;
    position: relative;
}

.section_careers_title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--color_orange);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section_careers_subtitle {
    color: var(--color_medium_gray);
    font-family: var(--font_text);
    font-size: 18px;
    line-height: 1.6;
    margin: 30px auto 50px;
    max-width: 600px;
}

.careers_form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: none;
    width: 100%;
    margin: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.form_select {
    background-color: rgba(255, 255, 255, 0.9) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23718096' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 14px center !important;
    background-repeat: no-repeat !important;
    background-size: 14px !important;
    padding-right: 40px !important;
    padding: 14px 14px;
    font-size: 16px;
    min-height: 50px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.form_select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23FF9F1C' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
}

.careers_submit {
    background: linear-gradient(135deg, var(--color_orange) 0%, var(--color_light_orange) 100%);
    color: var(--color_white);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.careers_submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(250, 170, 1, 0.3);
}

.product_img_wrapper:hover .default {
  opacity: 0;
}

/* CategorÃ­as con iconos - Responsive mejorado */
.products_categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0 20px;
    margin: 0;
}

.product_category {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 2px solid #e1e8ed;
    border-radius: 30px;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
    min-height: 44px; /* Mejor para dispositivos tactiles */
}

.category_icon {
    font-size: 18px;
}

/* Responsive para categoras */
@media (max-width: 1024px) {
    .products_categories {
        gap: 12px;
        padding: 0 15px;
    }
    
    .product_category {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .category_icon {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .products_categories {
        gap: 10px;
        padding: 0 10px;
    }
    
    .product_category {
        padding: 10px 16px;
        font-size: 13px;
        flex: 0 0 auto;
        min-width: 80px;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .products_categories {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 10px;
        gap: 8px;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }
    
    .products_categories::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    .product_category {
        flex: 0 0 auto;
        white-space: nowrap;
        min-width: 90px;
    }
}

@media (max-width: 480px) {
    .product_category {
        padding: 8px 14px;
        font-size: 12px;
        gap: 6px;
        min-width: 80px;
    }
    
    .category_icon {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .products_categories {
        padding: 0 5px;
    }
    
    .product_category {
        padding: 8px 12px;
        min-width: 70px;
    }
}

.product_category:hover {
    border-color: #faaa01;
    background: #fff9e6;
    transform: translateY(-2px);
}

.product_category.active {
    background: #faaa01;
    color: white;
    border-color: #faaa01;
    box-shadow: 0 4px 15px rgba(250, 170, 1, 0.3);
}

/* Grid de productos - Responsive Mejorado */
.products_container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.products {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Responsive breakpoints mejorados para productos */
@media (max-width: 1440px) {
    .products {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 1200px) {
    .products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }
}

@media (max-width: 1024px) {
    .products_container {
        padding: 0 15px;
    }
    
    .products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 640px) {
    .products_container {
        padding: 0 10px;
    }
    
    .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .products_container { padding: 0; }
    .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        max-width: none;
        margin: 0;
    }
    /* Fallback iOS/Safari: fuerza 2 columnas */
    .section_products .products { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .section_products .product { min-width: 0; }

    /* Separadores tipo Falabella */
    .products_container { border-top: 1px solid #eceff1; border-left: 1px solid #eceff1; }
    .product { box-shadow: none; border-radius: 0; border-right: 1px solid #eceff1; border-bottom: 1px solid #eceff1; }

    /* Imagen cuadrada, centrada */
    .product_image_wrapper { aspect-ratio: 1 / 1; height: auto; background: #fbfbfb; }
    .product_img { object-fit: contain; padding: 8px; }

    /* Contenido compacto */
    .product_content { padding: 12px; }
    .product_sku { font-size: 10px; letter-spacing: .03em; }
    .product_name { font-size: 15px; line-height: 1.25; margin-bottom: 6px; }
    .product_features { margin: 6px 0 8px; }
    .product_features li { margin: 2px 0; color: #4a5568; font-size: 12px; }
    .product_desc, .product_specs { font-size: 12px; }

    .product_actions { padding-top: 10px; flex-direction: column; gap: 8px; align-items: stretch; }
    .product_cta { width: 100%; text-align: center; padding: 9px 12px; border-radius: 9999px; font-size: 13px; box-sizing: border-box; }
    .stock_status { order: 2; margin: 0; font-size: 12px; }
}

@media (max-width: 360px) {
    .products_container {
        padding: 0 5px;
    }
    
    .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: none;
    }
}

/* Tarjeta de producto */
.product {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Badges */
.product_badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #27ae60;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.product_badge.new {
    background: #3498db;
}

.product_badge.premium {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.product_badge.popular {
    background: #27ae60;
}

.product_badge.hot {
    background: #e74c3c;
}

/* Imagen del producto */
.product_image_wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    contain: layout style paint;
    /* fondo mÃ¡s neutro para que la imagen resalte sin encandilar */
    background: #fafafa;
}

.product_image_wrapper picture {
    width: 100%;
    height: 100%;
    display: block;
}

.product_image_wrapper source {
    display: none;
}

.product_image_wrapper source[type="image/webp"]:first-of-type,
.product_image_wrapper source[type="image/jpeg"]:first-of-type {
    display: block;
}

.product_img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    will-change: transform;
    background: transparent;
}

.form_msg:not(.active) {
    display: none;
}

/* Efecto para imÃ¡genes de caja: elimina blancos con mezcla multiplicar */


.product_image_wrapper:hover .product_img {
    transform: scale(1.05);
}

/* Optimizaciones para conexiones lentas */
@media (prefers-reduced-data: reduce) {
    .product_img {
        transform: none !important;
    }
    .product_image_wrapper source[srcset*="1200w"] {
        display: none;
    }
}

/* Optimizaciones mÃ³viles */
@media (max-width: 768px) {
    .product_image_wrapper {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .product_image_wrapper {
        height: 200px;
    }
}

/* Overlay con botÃ³n */
.product_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product:hover .product_overlay {
    opacity: 1;
}

.quick_view_btn {
    background: #faaa01;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.quick_view_btn:hover {
    background: #e69a00;
    transform: scale(1.05);
}

/* Contenido del producto */
.product_content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product_sku {
    font-size: 11px;
    color: #95a5a6;
    font-weight: 500;
    margin-bottom: 5px;
}

.product_name {
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.2;
}

.product_specs {
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ecf0f1;
}

.product_desc {
    font-size: 13px;
    color: #5d6d7e;
    line-height: 1.4;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Modal de imagen */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    transition: opacity 0.3s ease;
}

.modal-content {
    display: block;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.close-modal {
    position: absolute;
    right: 35px;
    top: 15px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Acciones del producto */
.product_actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #ecf0f1;
}

.stock_status {
    font-size: 12px;
    font-weight: 600;
}

.stock_status.in_stock {
    color: #27ae60;
}

.stock_status.limited {
    color: #f39c12;
}

.stock_status.out_stock {
    color: #e74c3c;
}

.product_cta {
    background: #faaa01;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.product_cta:hover {
    background: #e69a00;
    transform: translateX(2px);
}

/* ActualizaciÃ³n de la secciÃ³n de testimonios */
.section_testimonial_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 36px;
    padding: 56px 5%;
    background: linear-gradient(145deg, #fff5e6, #fff9f0); /* Fondo pastel suave derivado del color naranja */
}

.testimonial {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(255, 159, 28, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 120px;
    background: linear-gradient(45deg, #FF9F1C, #FFB246);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial_avatar {
    width: 120px;
    height: 120px;
    position: relative;
    margin: 0 auto 25px;
    overflow: visible;
}

/* ===== MODERN AVATAR STYLES ===== */
.avatar_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Borde con gradiente */
    border: 4px solid transparent;
    background: linear-gradient(145deg, #ffffff, #f8f9fa) padding-box,
                linear-gradient(145deg, var(--color_orange), #ffb84d, #ff7043) border-box;
    
    /* Sombras mÃºltiples para profundidad */
    box-shadow: 
        0 8px 32px rgba(255, 159, 28, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Efecto de anillo animado */
.testimonial_avatar::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: conic-gradient(
        from 0deg,
        var(--color_orange),
        #ffb84d,
        #ff7043,
        var(--color_orange)
    );
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
    animation: rotate 3s linear infinite;
    transition: opacity 0.3s ease;
}

/* Efecto de resplandor */
.testimonial_avatar::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: radial-gradient(
        circle at center,
        rgba(255, 159, 28, 0.3) 0%,
        rgba(255, 159, 28, 0.1) 50%,
        transparent 70%
    );
    border-radius: 50%;
    opacity: 0;
    z-index: -2;
    transition: all 0.4s ease;
    filter: blur(8px);
}

/* Estados hover */
.testimonial:hover .testimonial_avatar::before {
    opacity: 0.8;
}

.testimonial:hover .testimonial_avatar::after {
    opacity: 1;
    transform: scale(1.1);
}

.testimonial:hover .avatar_img {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(255, 159, 28, 0.3),
        0 6px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Animaciï¿½n de rotaciï¿½n para el anillo */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Estado activo con pulso */
.testimonial_avatar.pulse::before {
    animation: pulse-ring 2s infinite, rotate 3s linear infinite;
}

@keyframes pulse-ring {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1);
    }
}

/* Efecto de enfoque personalizado */
.avatar_img:focus {
    outline: none;
    box-shadow: 
        0 0 0 4px rgba(255, 159, 28, 0.3),
        0 8px 32px rgba(255, 159, 28, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Efectos adicionales para JavaScript */
.testimonial_avatar.clicked {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.testimonial_avatar.animate-in {
    animation: avatarFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes avatarFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Efecto ripple */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 159, 28, 0.3) 0%,
        rgba(255, 159, 28, 0.1) 50%,
        transparent 100%
    );
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
    z-index: 0;
}

@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Mejoras en la transiciÃ³n del avatar img */
.avatar_img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Efecto hover suave */
.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 159, 28, 0.12);
}

/* Estilos para texto y autor de testimonials */
.testimonial_text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial_author {
    color: #2d3748;
    font-weight: 600;
    font-size: 18px;
    margin-top: 20px;  
    background: linear-gradient(90deg, #FF9F1C, #FFB246);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* TÃ­tulo de secciÃ³n testimonios */
.section_testimonial_title {
    text-align: center;
    font-size: clamp(28px, 5vw, 42px);
    color: #2c3e50;
    font-family: var(--font_title);
    font-weight: 700;
    margin: 60px 0 40px;
    position: relative;
}

.section_testimonial_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color_orange), #ffb84d);
    border-radius: 2px;
}
        /* CLIENTS SECTION */
        /* ===== SECCIÓN DE CLIENTES CON EFECTOS INTERACTIVOS ===== */
        .section_clients {
            width: 100%;
            padding: 80px 5%;
            background: linear-gradient(135deg, var(--color_cream) 0%, var(--color_light_gray) 100%);
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 50px;
        }

        .section_clients_title {
            font-size: 42px;
            color: var(--color_dark_gray);
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            font-weight: bold;
        }

        .section_clients_title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--color_orange);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .clients_slider_container {
            width: 100%;
            max-width: 1200px;
            position: relative;
            overflow: visible;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .clients_slider {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
            width: 100%;
            max-width: 1200px;
            list-style: none;
            padding: 0;
            margin: 0 auto;
            justify-items: center;
            align-items: center;
        }

        .client {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            position: relative;
        }

        .client_link {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 140px;
            padding: 20px;
            background: var(--color_white);
            border-radius: 15px;
            border: 2px solid transparent;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .client_link::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(250, 170, 1, 0.15), transparent);
            top: -100%;
            left: -100%;
            transition: all 0.6s ease;
            pointer-events: none;
        }

        .client_link:hover::before {
            top: 100%;
            left: 100%;
        }

        .client_link::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 15px;
            border: 2px solid transparent;
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .client_logo {
            max-width: 170px;
            max-height: 110px;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: none;
            opacity: 1;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
        }

        /* efectos especiales por cliente */
        .client:nth-child(1) .client_link:hover {
            transform: scale(1.08) rotate(2deg);
            box-shadow: 0 8px 25px rgba(250, 170, 1, 0.4);
        }
        .client:nth-child(1) .client_link:hover::after {
            border-color: #ff8c00;
            opacity: 1;
        }

        .client:nth-child(2) .client_link:hover {
            transform: scale(1.08) translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 123, 255, 0.3);
        }
        .client:nth-child(2) .client_link:hover::after {
            border-color: #007bff;
            opacity: 1;
        }

        .client:nth-child(3) .client_link:hover {
            animation: pulse 1.5s infinite;
            box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
        }
        .client:nth-child(3) .client_link:hover::after {
            border-color: #dc3545;
            opacity: 1;
        }

        .client:nth-child(4) .client_link:hover {
            transform: scale(1.08);
            box-shadow: 0 0 0 6px rgba(40, 167, 69, 0.2);
        }
        .client:nth-child(4) .client_link:hover::after {
            border-color: #28a745;
            opacity: 1;
        }

        .client:nth-child(5) .client_link:hover {
            transform: scale(1.08) skew(-2deg);
            box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
        }
        .client:nth-child(5) .client_link:hover::after {
            border-color: #ffc107;
            opacity: 1;
        }

        .client:nth-child(6) .client_link:hover {
            animation: shake 0.5s ease-in-out;
            box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
        }
        .client:nth-child(6) .client_link:hover::after {
            border-color: #6c757d;
            opacity: 1;
        }

        .client:nth-child(7) .client_link:hover {
            transform: scale(1.08) translateX(8px);
            box-shadow: 0 8px 25px rgba(111, 66, 193, 0.3);
        }
        .client:nth-child(7) .client_link:hover::after {
            border-color: #6f42c1;
            opacity: 1;
        }

        .client:nth-child(8) .client_link:hover {
            transform: scale(1.15);
            box-shadow: 0 8px 25px rgba(23, 162, 184, 0.3);
        }
        .client:nth-child(8) .client_link:hover::after {
            border-color: #17a2b8;
            opacity: 1;
        }

        .client:nth-child(9) .client_link:hover {
            transform: scale(1.08);
            clip-path: polygon(8% 0%, 92% 0%, 100% 8%, 100% 92%, 92% 100%, 8% 100%, 0% 92%, 0% 8%);
            box-shadow: 0 8px 25px rgba(250, 170, 1, 0.4);
        }
        .client:nth-child(9) .client_link:hover::after {
            border-color: #faaa01;
            opacity: 1;
        }

        .client:nth-child(10) .client_link:hover {
            transform: scale(1.08);
            box-shadow: 8px 8px 0 rgba(0, 123, 255, 0.3);
        }
        .client:nth-child(10) .client_link:hover::after {
            border-color: #007bff;
            opacity: 1;
        }

        .client:nth-child(11) .client_link:hover {
            animation: moveAround 2s infinite ease-in-out;
            box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
        }
        .client:nth-child(11) .client_link:hover::after {
            border-color: #dc3545;
            opacity: 1;
        }

        .client:nth-child(12) .client_link:hover {
            transform: scale(1.08) rotate(-2deg);
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
        }
        .client:nth-child(12) .client_link:hover::after {
            border-color: #28a745;
            opacity: 1;
        }

        .client:nth-child(13) .client_link:hover {
            transform: scale(1.08) skew(2deg);
            box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
        }
        .client:nth-child(13) .client_link:hover::after {
            border-color: #ffc107;
            opacity: 1;
        }

        .client:nth-child(14) .client_link:hover {
            transform: scale(1.08) translateY(-6px);
            box-shadow: 0 12px 25px rgba(108, 117, 125, 0.3);
        }
        .client:nth-child(14) .client_link:hover::after {
            border-color: #6c757d;
            opacity: 1;
        }

        .client:nth-child(15) .client_link:hover {
            transform: scale(1.08) rotate(2deg);
            box-shadow: 0 8px 25px rgba(111, 66, 193, 0.3);
        }
        .client:nth-child(15) .client_link:hover::after {
            border-color: #6f42c1;
            opacity: 1;
        }

        .client:nth-child(16) .client_link:hover {
            animation: pulse 1.5s infinite;
            box-shadow: 0 8px 25px rgba(23, 162, 184, 0.3);
        }
        .client:nth-child(16) .client_link:hover::after {
            border-color: #17a2b8;
            opacity: 1;
        }

        .client:nth-child(17) .client_link:hover {
            transform: scale(1.08) translateX(-8px);
            box-shadow: 0 8px 25px rgba(250, 170, 1, 0.4);
        }
        .client:nth-child(17) .client_link:hover::after {
            border-color: #faaa01;
            opacity: 1;
        }

        .client:nth-child(18) .client_link:hover {
            transform: scale(1.08);
            box-shadow: 0 0 0 6px rgba(0, 123, 255, 0.2);
        }
        .client:nth-child(18) .client_link:hover::after {
            border-color: #007bff;
            opacity: 1;
        }

        .client:nth-child(19) .client_link:hover {
            transform: scale(1.08) skew(-2deg);
            box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
        }
        .client:nth-child(19) .client_link:hover::after {
            border-color: #dc3545;
            opacity: 1;
        }

        .client:nth-child(20) .client_link:hover {
            animation: moveAround 2s infinite ease-in-out;
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
        }
        .client:nth-child(20) .client_link:hover::after {
            border-color: #28a745;
            opacity: 1;
        }

        .client_link:hover .client_logo {
            filter: none;
            opacity: 1;
            transform: scale(1.05);
        }

        @keyframes pulse {
            0% { transform: scale(1.08); }
            50% { transform: scale(1.03); }
            100% { transform: scale(1.08); }
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0) scale(1.08); }
            25% { transform: translateX(-5px) scale(1.08); }
            75% { transform: translateX(5px) scale(1.08); }
        }

        @keyframes moveAround {
            0% { transform: translate(0, 0) scale(1.08); }
            25% { transform: translate(3px, -3px) scale(1.08); }
            50% { transform: translate(0, 0) scale(1.08); }
            75% { transform: translate(-3px, 3px) scale(1.08); }
            100% { transform: translate(0, 0) scale(1.08); }
        }

        @media screen and (max-width: 1024px) {
            .clients_slider {
                grid-template-columns: repeat(4, 1fr);
                gap: 25px;
            }

            .client_link {
                height: 120px;
            }

            .client_logo {
                max-width: 135px;
                max-height: 90px;
            }
        }

        @media screen and (max-width: 768px) {
            .section_clients {
                padding: 60px 5%;
                gap: 40px;
            }

            .section_clients_title {
                font-size: 32px;
            }

            .clients_slider {
                grid-template-columns: repeat(4, 1fr);
                gap: 18px;
            }

            .client_link {
                height: 110px;
                padding: 15px;
            }

            .client_logo {
                max-width: 90px;
                max-height: 60px;
            }
        }

        @media screen and (max-width: 540px) {
            .section_clients {
                padding: 45px 4%;
            }

            .section_clients_title {
                font-size: 28px;
            }

            .clients_slider {
                grid-template-columns: repeat(4, 1fr);
                gap: 12px;
            }

            .client_link {
                height: 95px;
                padding: 10px;
                border-radius: 12px;
            }

            .client_logo {
                max-width: 70px;
                max-height: 50px;
            }
        }

        @media screen and (max-width: 380px) {
            .clients_slider {
                gap: 10px;
            }

            .client_link {
                height: 90px;
                padding: 8px;
            }

            .client_logo {
                max-width: 60px;
                max-height: 40px;
            }
        }
        /* RESPONSIVE DESIGN */
        @media screen and (max-width: 768px) {
            .social_header_bar {
                flex-direction: column;
                height: auto;
                padding: 10px 3%;
                gap: 10px;
            }

            .btn_menu {
                display: block;
                position: fixed;
                top: 20px;
                left: 5%;
                z-index: 500;
            }

            .btn_menu_close {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
                width: 30px;
                height: 30px;
                filter: invert(100%);
                cursor: pointer;
                z-index: 600;
            }

            .header {
                width: 80%;
                height: 100vh;
                left: -80%;
                top: 0;
                background: var(--color_black);
                flex-direction: column;
                justify-content: center;
                padding: 5%;
                transition: left 0.3s ease;
            }

            .header.translate {
                left: 0;
            }

            .nav_bar {
                margin: 40px 0;
            }

            .menu {
                flex-direction: column;
                gap: 30px;
            }

            .menu_link {
                color: var(--color_white);
                font-size: 1.2rem;
            }

            .contact_btn {
                width: 100%;
                text-align: center;
                padding: 15px;
            }

            h1 { font-size: 36px; }
            h2 { font-size: 28px; }
            h3 { font-size: 20px; }

            /* Banner responsive para tablets */
            .section_banner {
                justify-content: center;
                align-items: center;
                text-align: center;
                padding: 40px 5%;
                min-height: 600px;
                box-sizing: border-box;
                background: linear-gradient(135deg, 
                    rgba(26, 32, 44, 0.2) 0%, 
                    rgba(45, 55, 72, 0.15) 30%,
                    rgba(255, 159, 28, 0.05) 70%,
                    rgba(255, 179, 71, 0.1) 100%
                );
            }

            .section_banner::before {
                background-size: cover;
                background-position: center;
                opacity: 0.3;
            }

            .banner_content {
                max-width: 90%;
                text-align: center;
                margin-top: 0;
                padding: 40px 15px;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }

            .title {
                font-size: clamp(28px, 6vw, 42px);
                text-align: center;
                margin-top: 0;
                text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
                line-height: 1.2;
                word-wrap: break-word;
                hyphens: auto;
            }

            .sub_title {
                font-size: clamp(15px, 2.8vw, 20px);
                text-align: center;
                text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
                line-height: 1.3;
                word-wrap: break-word;
                margin-bottom: 30px;
            }

            .cta {
                float: none;
                display: inline-flex;
                margin-top: 0;
            }

            .products {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .clients_slider {
                width: 100%;
                margin-left: 0;
            }

            .client {
                width: 100%;
            }

            .footer {
                flex-direction: column;
                gap: 40px;
                text-align: center;
            }

            .footer_menu {
                flex-direction: column;
                gap: 15px;
            }

            /* Form styles for tablets */
            .section_contact {
                padding: 70px 4% 90px;
                gap: 40px;
            }

            .contact_form {
                padding: 35px;
                max-width: 500px;
            }

            .form_input {
                padding: 15px 18px;
            }

            .form_submit {
                padding: 16px 22px;
            }

        /* Avatar styles for tablets */
        .testimonial_avatar {
            width: 100px;
            height: 100px;
            margin-bottom: 20px;
        }

        /* Compact testimonials (tablet) */
        .testimonial { padding: 24px 18px; }
        .section_testimonial_container { gap: 24px; padding: 40px 4%; }
        .testimonial_text { font-size: 14px; line-height: 1.6; }
        .testimonial_author { font-size: 16px; }

            .testimonial_avatar::before {
                top: -6px;
                left: -6px;
                right: -6px;
                bottom: -6px;
            }

            .testimonial_avatar::after {
                top: -3px;
                left: -3px;
                right: -3px;
                bottom: -3px;
            }
        }

        @media screen and (max-width: 480px) {
            .products_title { font-size: clamp(22px, 7.5vw, 28px); }
            .products_subtitle { font-size: clamp(13px, 4vw, 15px); }
            /* Banner mï¿½vil */
            .section_banner {
                padding: 20px 15px;
                min-height: 500px;
                justify-content: center;
                align-items: center;
                box-sizing: border-box;
                background: linear-gradient(135deg, 
                    rgba(26, 32, 44, 0.15) 0%, 
                    rgba(45, 55, 72, 0.1) 30%,
                    rgba(255, 159, 28, 0.05) 70%,
                    rgba(255, 179, 71, 0.08) 100%
                );
            }

            .section_banner::before {
                background-size: cover;
                background-position: center;
                opacity: 0.25;
            }

            .banner_content {
                text-align: center;
                margin-top: 0;
                padding: 20px 10px;
                max-width: 95%;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }

            .title {
                font-size: clamp(22px, 7vw, 28px);
                margin-bottom: 15px;
                text-align: center;
                text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
                line-height: 1.2;
                word-wrap: break-word;
                hyphens: auto;
            }

            .sub_title {
                font-size: clamp(13px, 3.5vw, 16px);
                margin-bottom: 25px;
                text-align: center;
                text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
                line-height: 1.3;
                word-wrap: break-word;
            }

            .cta {
                padding: 12px 24px;
                font-size: 0.9rem;
                border-radius: 40px;
                float: none;
                display: inline-flex;
                margin-top: 0;
            }

            .cta_icon {
                width: 20px;
                height: 20px;
            }

            .contact_form {
                width: 95%;
                padding: 25px 20px;
                border-radius: 15px;
            }

            .section_contact {
                padding: 60px 3% 80px;
                gap: 30px;
            }

            .section_contact_title {
                font-size: 28px;
                margin-bottom: 10px;
            }

            .form_item {
                margin-bottom: 25px;
            }

            .form_input {
                padding: 14px 16px;
                font-size: 16px; /* Prevenir zoom en iOS */
                border-radius: 10px;
            }

            .form_textarea {
                min-height: 100px;
            }

            .form_label {
                left: 20px;
                font-size: 15px;
            }

            .form_input:focus + .form_label,
                        .form_label.active {
                left: 12px;
                font-size: 11px;
            }

            .form_submit {
                padding: 16px 20px;
                font-size: 15px;
            }

            .contact_text_container {
                padding: 16px 20px;
                gap: 10px;
            }

            .contact_text {
                font-size: 15px;
            }

            .contact_text_container .contact_icon {
                width: 20px;
                height: 20px;
            }

            /* Avatar styles for mobile */
            .testimonial_avatar {
                width: 80px;
                height: 80px;
                margin-bottom: 15px;
            }

            .testimonial_avatar::before {
                top: -4px;
                left: -4px;
                right: -4px;
                bottom: -4px;
            }

            .testimonial_avatar::after {
                top: -2px;
                left: -2px;
                right: -2px;
                bottom: -2px;
                filter: blur(6px);
            }

            .testimonial_text {
                font-size: 13px;
                line-height: 1.55;
            }

            .testimonial_author {
                font-size: 14px;
                margin-top: 12px;
            }

            .about_us_content {
                grid-template-columns: 1fr;
            }

            .section_testimonial_container {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 24px 3%;
            }

            .testimonial { padding: 16px 12px; }
        }

/* ===== POPUP PROMOCIONAL ===== */
.promo-popup {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 9999;
}

.promo-popup.active {
    opacity: 1;
    pointer-events: auto;
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.promo-card {
    position: relative;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    max-width: 85vw;
    width: auto;
    max-height: 85vh;
    transform: translateY(12px) scale(0.98);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-popup.active .promo-card {
    transform: translateY(0) scale(1);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.promo-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.92);
    color: #1f2937;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    z-index: 5;
}

.promo-close:hover,
.promo-close:focus-visible {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transform: scale(1.05);
    outline: none;
}

.promo-media {
    background: transparent;
    max-height: 85vh;
    display: inline-block;
}

.promo-image {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 85vh;
}

@media (max-width: 640px) {
    .promo-popup {
        padding: 16px;
    }
    .promo-card {
        width: 100%;
        border-radius: 0;
        max-width: 85vw;
        max-height: 82vh;
    }
    .promo-media {
        max-height: 70vh;
    }
}

@media (prefers-reduced-motion: reduce) {
    .promo-popup,
    .promo-card,
    .promo-close {
        transition: none;
    }
}
/* ===== ESTILOS PARA FORMULARIOS LADO A LADO ===== */
.section_forms {
    padding: 40px 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.section_forms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(255,159,28,0.03);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(76,175,80,0.03);stop-opacity:1" /></linearGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad1)"/><circle cx="800" cy="800" r="150" fill="url(%23grad1)"/><circle cx="600" cy="300" r="80" fill="url(%23grad1)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.7;
}

.forms_container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.form_wrapper {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 18px 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
}

/* Wrapper generic for both forms */
.form_wrapper {
    padding: 14px 10px;
}

.form_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* No bloquear inputs */
    z-index: 0; /* Queda detrÃ¡s del contenido */
}

.form_wrapper:hover::before {
    opacity: 0.2; /* Sombra sutil como el formulario de contacto */
}

.form_wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.form_title {
    color: var(--color_orange);
    font-family: var(--font_title);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    position: relative;
}

.form_title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, var(--color_orange) 0%, var(--color_green) 100%);
    border-radius: 1px;
}

.form_subtitle {
    color: #64748b;
    font-size: 14px;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.5;
}

.form_wrapper .contact_form,
.form_wrapper .careers_form {
    margin-bottom: 12px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    height: 100%;
    width: 100%;
    max-width: none;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.contact_text_container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid rgba(37, 211, 102, 0.2);
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.contact_text_container:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

/* Alinear botones de ambos formularios al mismo nivel */
.contact_form .form_item:last-child,
.careers_form .form_item:last-child {
    margin-top: auto;
}

.form_submit {
    display: block;
    width: 100%;
}

.contact_text {
    color: #059669;
    font-weight: 600;
    margin: 0;
}

.contact_icon {
    width: 24px;
    height: 24px;
}

/* Responsive para formularios lado a lado */
@media screen and (max-width: 768px) {
    .forms_container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form_wrapper {
        padding: 25px 20px;
    }
    
    .form_title {
        font-size: 20px;
    }
    
    .form_subtitle {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .section_forms {
        padding: 40px 15px;
    }
    
    .form_wrapper {
        padding: 25px 18px;
        border-radius: 0;
    }
    
    .form_title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .form_subtitle {
        font-size: 13px;
        margin-bottom: 18px;
    }
    
    .form_input,
    .form_select {
        padding: 16px 14px;
        font-size: 14px;
    }
    
    .form_textarea {
        min-height: 80px;
        padding-top: 14px;
    }
    
    .form_submit {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* ===== ESTILOS PARA ENVÃO DE CV ===== */
.cv_upload_container {
    margin-top: 20px;
    padding: 20px;
    background: rgba(76, 175, 80, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 0;
    text-align: center;
}

.cv_upload_text {
    color: #374151;
    font-size: 14px;
    margin: 0 0 12px 0;
    font-weight: 500;
}

.cv_upload_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #FF9F1C 0%, #ffb84d 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.3);
}

.cv_upload_link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 159, 28, 0.4);
    background: linear-gradient(135deg, #ffb84d 0%, #FF9F1C 100%);
}

/* ================================================
   OPTIMIZACIÃ“N DE IMÃGENES RESPONSIVE
   ================================================ */

/* ImÃ¡genes base responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Lazy loading y performance */
.product_img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product_img[loading="lazy"].loaded {
    opacity: 1;
}

/* Contenedores de imagen responsive */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: #f0f0f0;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

/* ImÃ¡genes de productos optimizadas */
.product_image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product_image:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Avatares de clientes optimizados */
.client_avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.client_avatar:hover {
    transform: scale(1.1);
}

/* Logos optimizados */
.logo_image {
    height: auto;
    max-height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(1) contrast(1);
    transition: filter 0.3s ease;
}

/* Banners e imÃ¡genes hero */
.banner_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

/* Media queries para optimizaciÃ³n de imÃ¡genes */
@media (max-width: 1024px) {
    .product_image {
        border-radius: 8px;
    }
    
    .client_avatar {
        width: 70px;
        height: 70px;
        border-width: 2px;
    }
    
    .logo_image {
        max-height: 36px;
    }
}

@media (max-width: 768px) {
    .image-container {
        border-radius: 10px;
    }
    
    .product_image {
        border-radius: 6px;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    }
    
    .client_avatar {
        width: 60px;
        height: 60px;
    }
    
    .logo_image {
        max-height: 32px;
    }
}

@media (max-width: 640px) {
    .image-container {
        border-radius: 8px;
    }
    
    .product_image {
        border-radius: 4px;
    }
    
    .client_avatar {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
    
    .logo_image {
        max-height: 28px;
    }
    
    /* Optimizacion para dispositivos con conexion lenta */
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

@media (max-width: 480px) {
    .client_avatar {
        width: 45px;
        height: 45px;
    }
    
    .logo_image {
        max-height: 24px;
    }
    
    /* Reducir calidad de imagen en moviles pequeÃ±os */
    .banner_image {
        image-rendering: auto;
    }
}

@media (max-width: 360px) {
    .client_avatar {
        width: 40px;
        height: 40px;
    }
    
    .logo_image {
        max-height: 20px;
    }
}

/* Soporte para densidades de pantalla altas */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .logo_image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Soporte para modo oscuro en imï¿½genes */
@media (prefers-color-scheme: dark) {
    .logo_image {
        filter: brightness(0.9) contrast(1.1);
    }
    
    .image-container {
        background: #2a2a2a;
    }
}

/* Optimizaciï¿½n para reducir movimiento */
@media (prefers-reduced-motion: reduce) {
    img {
        transition: none;
    }
    
    .image-container img,
    .product_image,
    .client_avatar {
        transition: none;
    }
    
    .image-container:hover img,
    .product_image:hover,
    .client_avatar:hover {
        transform: none;
    }
}

/* Estado de ï¿½xito cuando se envï¿½a el CV */
.cv_upload_link.success {
    background: linear-gradient(135deg, var(--color_green) 0%, #059669 100%) !important;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3) !important;
}

.cv_upload_link.success:hover {
    background: linear-gradient(135deg, #059669 0%, var(--color_green) 100%) !important;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4) !important;
}

.cv_upload_link span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive para CV upload */
@media screen and (max-width: 480px) {
    .cv_upload_container {
        margin-top: 15px;
        padding: 15px;
    }
    
    .cv_upload_text {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .cv_upload_link {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ===== BOTï¿½N FLOTANTE DE WHATSAPP ===== */
.whatsapp_float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp_float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp_float_icon {
    width: 35px;
    height: 35px;
    filter: brightness(1.1);
}

.whatsapp_float_text {
    display: none;
}

/* Animaciï¿½n de pulso para llamar la atenciï¿½n */
.whatsapp_float::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    animation: whatsapp_pulse 2s infinite;
    z-index: -1;
}

@keyframes whatsapp_pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

/* Responsive para el botï¿½n flotante */
@media screen and (max-width: 768px) {
    .whatsapp_float {
        bottom: 20px;
        right: 20px;
        width: 65px;
        height: 65px;
    }
    
    .whatsapp_float_icon {
        width: 32px;
        height: 32px;
    }
}

@media screen and (max-width: 480px) {
    .whatsapp_float {
        bottom: 15px;
        right: 15px;
        width: 60px;
        height: 60px;
    }
    
    .whatsapp_float_icon {
        width: 30px;
        height: 30px;
    }
}


/* Overrides to ensure popup image is not cropped */
.black-week-popup .popup-content {
    height: auto !important;
    max-height: 90vh !important;
    aspect-ratio: auto !important;
    width: min(95vw, 1080px) !important;
}
.black-week-popup .popup-banner-fullscreen {
    height: auto !important;
    max-height: 90vh !important;
    padding: 0 !important;
}
.black-week-popup .promotion-banner-full {
    width: 100% !important;
    height: auto !important;
    max-height: 90vh !important;
    object-fit: contain !important;
    padding: 0 !important;
}

/* Remove bullets from product feature lists */
.product_features {
    list-style: none;
    padding-left: 0;
    margin: 0 0 12px 0;
}
.product_features li {
    list-style: none;
    padding-left: 0;
}

/* ===== CV upload controls ===== */
.cv_upload_controls { display: flex; gap: 12px; justify-content: center; align-items: center; flex-wrap: wrap; }
.file_upload_display { border: 2px dashed #e2e8f0; background: rgba(255,255,255,0.9); color:#374151; padding: 10px 14px; border-radius: 8px; cursor: pointer; min-width: 220px; text-align: center; transition: all .2s ease; }
.file_upload_display:hover, .file_upload_display:focus { border-color: var(--color_orange); box-shadow: 0 4px 12px rgba(255,159,28,.15); outline: none; }
.file_upload_text { font-weight: 600; margin-right: 6px; }
#file_name { color:#718096; font-size: 13px; }
        /* Drawer panel */
        .menu-drawer {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 85vw;
            max-width: 320px;
            background: #ffffff;
            color: #1a202c;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            box-shadow: 2px 0 20px rgba(0,0,0,0.25);
            display: flex;
            flex-direction: column;
        }

        .fullscreen-menu.active .menu-drawer {
            transform: translateX(0);
        }

        .menu-close {
            background: none;
            border: none;
            color: #2d3748;
            font-size: 28px;
            line-height: 1;
            cursor: pointer;
        }

        .fullscreen-menu-link {
            color: #1a202c;
        }


/* Final mobile overrides to ensure Falabella-like grid */
@media (max-width: 480px) {
  .products { gap: 0 !important; }
  .products_container { padding: 0 !important; border-top: 1px solid #eceff1; border-left: 1px solid #eceff1; }
  .product { border-radius: 0 !important; box-shadow: none !important; border-right: 1px solid #eceff1; border-bottom: 1px solid #eceff1; background: #fff; }
  .product_image_wrapper { aspect-ratio: 1/1 !important; height: auto !important; }
}

/* Mostrar logo sobre banner solo en mï¿½viles */
.banner_logo { display: none; }
@media (max-width: 768px) {
  .banner_logo {
    display: block;
    position: absolute;
    right: 16px;
    top: 64px; /* se recalcula con JS segï¿½n barra social */
    z-index: 25;
    padding: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
  }
  .banner_logo img { display:block; height: 160px; width: auto; max-width: 90vw; }
  .header .logo_container .logo_icon { display: none !important; }

@media (max-width: 480px) {
  .banner_logo { right: 16px; top: 56px; }
  .banner_logo img { height: 180px; max-width: 90vw; }
}

/* Ocultar boton de cierre del drawer cuando estÃ¡ inactivo */
.fullscreen-menu .menu-close { display: none; }
.fullscreen-menu.active .menu-close { display: inline-block; }




