/* Estilos generales */
:root {
    --primary-color: #222222;
    --secondary-color: #444444;
    --accent-color: #c9a86a;
    --light-color: #f5f5f5;
    --text-color: #333;
    --white: #fff;
    --dark-gray: #333;
    --medium-gray: #666;
    --light-gray: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* CTAs y Botones Optimizados para Conversión */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #444);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn: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;
}

.btn:hover:before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, var(--accent-color), #d4b876);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 168, 106, 0.4);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Botones específicos mejorados */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #d4b876);
    color: var(--primary-color);
    font-weight: 800;
    padding: 18px 35px;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(201, 168, 106, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d4b876, var(--accent-color));
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(201, 168, 106, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    font-weight: 600;
    padding: 16px 32px;
    font-size: 16px;
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 168, 106, 0.4);
}

.btn-secondary:before {
    display: none;
}

/* Botones de acción en productos */
.add-to-cart-btn {
    background: linear-gradient(135deg, var(--primary-color), #444);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn: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;
}

.add-to-cart-btn:hover:before {
    left: 100%;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, var(--accent-color), #d4b876);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(201, 168, 106, 0.4);
}

.view-btn {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.view-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: left 0.3s;
    z-index: -1;
}

.view-btn:hover:before {
    left: 0;
}

.view-btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 168, 106, 0.3);
}

/* Botones de WhatsApp mejorados */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 20px;
}

/* Botones de calculadora */
.calculator-btn {
    background: linear-gradient(135deg, var(--accent-color), #d4b876);
    color: var(--primary-color);
    font-weight: 800;
    padding: 18px 35px;
    font-size: 16px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(201, 168, 106, 0.4);
    position: relative;
    overflow: hidden;
}

.calculator-btn: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;
}

.calculator-btn:hover:before {
    left: 100%;
}

.calculator-btn:hover {
    background: linear-gradient(135deg, #d4b876, var(--accent-color));
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(201, 168, 106, 0.6);
    color: var(--primary-color);
    text-decoration: none;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
}

/* Header y Navegación */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top:0;
    z-index:1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo estilizado */
.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-emphasis-color: transparent;
}

.logo::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    transform: scaleX(0.7);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.logo:hover::before {
    transform: scaleX(1);
}

.logo::after {
    content: '◆';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 12px;
    -webkit-text-fill-color: var(--accent-color);
}

/* Ocultar elementos decorativos del logo en móviles */
@media (max-width: 768px) {
    .logo::after {
        display: none;
    }
    
    .logo span::after {
        display: none;
    }
}

.logo span {
    color: var(--accent-color); /* Color acentuado para la segunda parte del nombre */
    font-style: italic;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    -webkit-text-fill-color: var(--accent-color);
}

.logo span::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--accent-color);
    bottom: -3px;
    right: -8px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.logo:hover span::after {
    opacity: 1;
    transform: scale(1);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-gray);
}

nav ul li a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    font-size: 24px;
}
/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 0;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.8;
}

/* Hero Section Mejorado - Elementos de Marketing */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.badge-icon {
    font-size: 16px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero h1 .highlight {
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: left;
}


.hero-subtitle strong {
    position: relative;
    padding-left: 20px;
    margin-right: 10px;
    display: inline-block;
}

.hero-subtitle strong::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #c9a86a, #d4b876);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(201, 168, 106, 0.4);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    text-align: left;
}

/* Elementos de confianza */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    font-weight: 400;
    opacity: 0.8;
}

.trust-icon {
    font-size: 18px;
}

/* CTAs mejorados */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.8), rgba(212, 184, 118, 0.8));
    color: var(--primary-color);
    font-weight: 700;
    padding: 15px 30px;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(201, 168, 106, 0.2);
    transform: translateY(0);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 106, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 168, 106, 0.6);
    background: linear-gradient(135deg, #d4b876, var(--accent-color));
}

.btn-secondary {
    background: rgba(201, 168, 106, 0.1);
    color: var(--white);
    border: 2px solid rgba(201, 168, 106, 0.5);
    font-weight: 600;
    padding: 13px 28px;
    font-size: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Indicador de stock mejorado - más visible */
.stock-indicator-top {
    position: fixed;
    top: 160px;
    right: 20px;
    z-index: 1001;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border: 2px solid #fff;
    padding: 12px 18px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    max-width: 300px;
    animation: stockFloat 3s ease-in-out infinite;
}

@keyframes stockFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.stock-indicator-top .stock-text {
    font-size: 14px;
    color: white;
    font-weight: 700;
    display: block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: urgencyPulse 2s infinite;
}

.stock-close-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid white;
    color: white;
    font-size: 16px;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1002;
}

.stock-close-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Optimización móvil para hero section */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .hero-subtitle strong {
        padding-left: 0;
        display: block;
        margin-bottom: 8px;
        margin-right: 0;
    }
    
    .hero-subtitle strong::before {
        display: none;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .hero-trust {
        margin-top: 30px;
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-item {
        text-align: center;
        padding: 12px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }
    
    .hero-actions {
        margin-top: 30px;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .stock-indicator-top {
        position: fixed;
        top: 140px;
        right: 10px;
        left: 10px;
        padding: 10px 15px;
        font-size: 12px;
        text-align: center;
        border-radius: 20px;
        max-width: none;
        z-index: 1001;
        background: linear-gradient(135deg, #ff6b6b, #ee5a52);
        border: 2px solid #fff;
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    }
    
    .stock-indicator-top .stock-text {
        font-size: 12px;
        line-height: 1.3;
        color: white;
        font-weight: 700;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }
}

/* Características */
.features {
    padding: 100px 0;
    background-color: var(--white);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-img {
    height: 250px;
    overflow: hidden;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-img img {
    transform: scale(1.05);
}

.feature-content {
    padding: 30px;
}

.feature-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.feature-content h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.feature-content p {
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 15px;
}
/* Productos */
.products {
    padding: 100px 0;
    background-color: var(--light-color);
}

.products-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    color: var(--medium-gray);
    padding: 8px 20px;
    margin: 5px 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.filter-btn:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    color: var(--primary-color);
}

.filter-btn.active:after, .filter-btn:hover:after {
    width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card[data-category="adhesivo"] .product-badge {
    background-color: #28a745;
    color: white;
}

/* Product Cards Mejoradas - Elementos de Conversión */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 15px;
    z-index: 1;
}

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

.product-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    backdrop-filter: blur(10px);
}

.stat-icon {
    font-size: 14px;
}

/* Beneficios del producto */
.product-benefits {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.benefit-tag {
    background: linear-gradient(135deg, #c9a86a, #d4b876);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid #b8955a;
    box-shadow: 0 2px 4px rgba(201, 168, 106, 0.3);
}

/* Urgencia de stock */
.product-urgency {
    margin-top: 10px;
    text-align: center;
}

.urgency-text {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    animation: urgencyPulse 2s infinite;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

@keyframes urgencyPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.product-content p {
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px 25px;
}

.product-price {
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-color);
}

/* Estilos para botones de producto */
.product-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 15px;
}

.view-btn {
    order: 1; /* Ver Detalle a la izquierda */
}

.add-to-cart-btn {
    order: 2; /* Carrito a la derecha */
}

.add-to-cart-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.add-to-cart-btn:hover {
    transform: scale(1.1);
    background-color: var(--primary-color);
}

.view-btn {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 2px;
}

.view-btn:after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.view-btn:hover:after {
    width: 100%;
}
/* Galería */
.gallery {
    padding: 100px 0;
    background-color: var(--white);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    border: 1px solid var(--white);
    padding: 10px 20px;
}

/* Testimonios */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-color);
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: var(--white);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    color: var(--medium-gray);
}

.testimonial-content:before {
    content: '"';
    font-size: 60px;
    color: var(--accent-color);
    position: absolute;
    left: -20px;
    top: -20px;
    opacity: 0.2;
}

/* Testimonios Mejorados - Elementos de Marketing */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-stat {
    text-align: center;
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.trust-stat:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.stat-number {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(201, 168, 106, 0.2);
}

.stat-label {
    font-size: 14px;
    color: var(--medium-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    font-size: 18px;
}

.rating-text {
    background: var(--accent-color);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.testimonials-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--accent-color), #d4b876);
    padding: 40px;
    border-radius: 20px;
    color: var(--white);
    margin-top: 40px;
}

.testimonials-cta h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.testimonials-cta p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--accent-color);
    font-weight: 700;
    padding: 15px 30px;
    font-size: 16px;
}

.cta-buttons .btn-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 600;
    padding: 13px 28px;
    font-size: 16px;
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--accent-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
    font-weight: 600;
}

.author-info p {
    color: var(--medium-gray);
    font-size: 14px;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
}

.cta .btn {
    background-color: var(--accent-color);
    color: var(--white);
    border: 1px solid var(--accent-color);
    font-weight: 500;
}

.cta .btn:hover {
    background-color: transparent;
    color: var(--white);
}
/* Contacto */
.contact {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--medium-gray);
}

.contact-icon {
    margin-right: 15px;
    color: var(--accent-color);
    font-size: 18px;
}

.social-links {
    display: flex;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* Estilos para iconos de redes sociales */
.social-link i {
    font-size: 20px;
}

.social-link:hover i {
    transform: scale(1.2);
}

/* Estilo para el enlace de WhatsApp */
.whatsapp-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: #25D366; /* Color verde de WhatsApp */
}

.contact-form h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--medium-gray);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.form-submit {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: var(--accent-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col h4:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

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

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

.footer-col ul li a {
    color: #aaa;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-newsletter p {
    margin-bottom: 20px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 14px;
}

.newsletter-btn {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .mobile-menu {
        display: block;
        font-size: 28px;
        padding: 8px 12px;
        color: var(--primary-color);
        transition: all 0.3s ease;
    }
    
    .mobile-menu:hover {
        color: var(--accent-color);
        transform: scale(1.1);
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 85%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-radius: 0 15px 15px 0;
        overflow-y: auto;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px 0;
        margin: 0;
        height: 100%;
        justify-content: flex-start;
    }
    
    nav ul li {
        margin: 0;
        padding: 0 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        display: block;
        padding: 18px 0;
        font-size: 16px;
        font-weight: 600;
        color: var(--primary-color);
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
    }
    
    nav ul li a:hover {
        color: var(--accent-color);
        padding-left: 15px;
        background: rgba(201, 168, 106, 0.1);
        border-radius: 8px;
        margin: 0 -10px;
    }
    
    nav ul li a:after {
        display: none;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta h2 {
        font-size: 28px;
    }
    
    .cta p {
        font-size: 16px;
    }
    
    .feature-card, .product-card, .gallery-item {
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .features, .products, .gallery, .testimonials, .contact {
        padding: 70px 0;
    }
    
    .testimonial-item {
        padding: 30px;
    }
    
    .feature-img, .product-img, .gallery-item {
        height: 220px;
    }
    
    /* Mejoras para móviles - tablets */
    .logo {
        font-size: 24px;
    }
    
    .logo::after {
        font-size: 10px;
        left: -12px;
    }
    
    .product-content h3 {
        font-size: 16px;
    }
    
    .product-price {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    /* Ajustes mejorados para móviles */
    h1 {
        font-size: 28px !important;
    }
    
    h2 {
        font-size: 24px !important;
    }
    
    h3 {
        font-size: 18px !important;
    }
    
    p {
        font-size: 16px !important;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Ajustar espaciado */
    .container {
        padding: 0 15px;
    }
    
    /* Ajustar secciones */
    section {
        padding: 40px 0 !important;
    }
    
    /* Hero más compacto */
    .hero {
        height: auto !important;
        min-height: 80vh;
        padding-top: 80px;
    }
    
    /* Arreglar encabezado móvil */
    .header-container {
        padding: 10px 0;
    }
    
    /* Mejorar visualización del menú móvil */
    .mobile-menu {
        font-size: 28px;
        padding: 5px 10px;
    }
    
    .products-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        margin: 5px 0;
    }
    
    .contact-form, .contact-info {
        padding: 0;
    }
    
    /* Mejorar tarjetas de productos en móvil */
    .product-card {
        margin-bottom: 20px;
    }
    
    .product-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-price {
        margin-bottom: 10px;
        font-size: 16px;
    }
    
    .product-actions {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    
    .view-btn {
        padding: 8px 12px;
    }
    
    /* Mejorar visualización de imágenes en galerías */
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .feature-img {
        height: 180px;
    }
    
    /* Mejorar formulario en móvil */
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-control {
        padding: 10px;
    }
    
    textarea.form-control {
        height: 100px;
    }
    
    /* Ajustes para la sección de características */
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
}

/* Estilos para el carrusel del hero */
.hero {
    position: relative;
    transition: background-image 0.5s ease-in-out;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.hero-nav:hover {
    background-color: rgba(0,0,0,0.7);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

/* Estilos responsive para los botones de navegacion */
@media (max-width: 768px) {
    .hero-nav {
        font-size: 18px;
        padding: 8px 12px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--light-color);
}

.faq-main-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-column {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-column-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-container {
    /* Contenedor para los items FAQ */
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-color);
}

.faq-question h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--accent-color);
    transition: transform 0.3s ease;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f9f9f9;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 25px 30px;
}

.faq-answer p {
    margin: 0;
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 15px;
}

/* Responsive para FAQ */
@media (max-width: 992px) {
    .faq-main-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-column {
        padding: 25px;
    }
    
    .faq-column-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 70px 0;
    }
    
    .faq-column {
        padding: 20px;
    }
    
    .faq-column-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 15px;
        padding-right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
        max-height: 350px;
    }
    
    .faq-toggle {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .faq-main-container {
        gap: 20px;
    }
    
    .faq-column {
        padding: 15px;
    }
    
    .faq-column-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .faq-question h3 {
        padding-right: 0;
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .faq-toggle {
        align-self: flex-end;
        margin-top: -35px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px;
        max-height: 400px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* Calculadora CTA */
.calculator-cta {
    margin-bottom: 50px;
}

.calculator-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.calculator-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 106, 0.1) 100%);
}

.calculator-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--white);
}

.calculator-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.calculator-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.calculator-btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.calculator-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    font-size: 14px;
    opacity: 0.9;
    padding: 5px 0;
}

/* Responsive para calculadora CTA */
@media (max-width: 768px) {
    .calculator-banner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
        text-align: center;
    }
    
    .calculator-content h3 {
        font-size: 20px;
    }
    
    .calculator-content p {
        font-size: 14px;
    }
    
    .calculator-features {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .feature-item {
        font-size: 12px;
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .calculator-banner {
        padding: 20px;
    }
    
    .calculator-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        margin: 0;
    }
}

/* Asegurar que Font Awesome esté disponible para los iconos */
.fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* ============================
   NOTIFICACIONES DISCRETAS Y ELEGANTES
   ============================ */

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 350px;
    min-width: 280px;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 12px;
}

.notification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #1a1a1a;
}

/* Tipos de notificación */
.notification-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.95), rgba(22, 163, 74, 0.95));
    border-left: 4px solid #22c55e;
}

.notification-success .notification-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.notification-success .notification-text {
    color: white;
}

.notification-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(217, 119, 6, 0.95));
    border-left: 4px solid #f59e0b;
}

.notification-warning .notification-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.notification-warning .notification-text {
    color: white;
}

.notification-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.95), rgba(220, 38, 38, 0.95));
    border-left: 4px solid #ef4444;
}

.notification-error .notification-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.notification-error .notification-text {
    color: white;
}

.notification-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(37, 99, 235, 0.95));
    border-left: 4px solid #3b82f6;
}

.notification-info .notification-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.notification-info .notification-text {
    color: white;
}

/* Animación de entrada más suave */
@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        min-width: auto;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .notification-content {
        padding: 14px 16px;
    }
    
    .notification-text {
        font-size: 13px;
    }
}

/* ============================
   DROPDOWN CATÁLOGOS - HOVER MEJORADO
   ============================ */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    display: flex !important;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-gray);
    text-decoration: none;
}

.dropbtn:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.dropdown:hover .dropbtn:after {
    width: 100%;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    color: var(--accent-color);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* 🔑 DROPDOWN con área de hover extendida */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    z-index: 1001;
    padding: 10px 0;
    margin-top: 5px;  /* 🔧 REDUCIDO de 10px a 5px */
    border: 1px solid var(--light-gray);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;  /* 🔧 Transición más rápida */
}

/* 🆕 ÁREA INVISIBLE para mantener hover */
.dropdown-content::after {
    content: '';
    position: absolute;
    top: -15px;  /* Cubre el gap + un poco más */
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

/* Flecha hacia arriba */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
    z-index: 1;
}

/* 🔑 HOVER con delay para mejor UX */
.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;  /* Sin delay al mostrar */
}

/* 🆕 DELAY al ocultar para mejor UX */
.dropdown-content {
    transition-delay: 0.15s;  /* Pequeño delay al ocultar */
}

.dropdown:hover .dropdown-content {
    transition-delay: 0s;  /* Sin delay al mostrar */
}

.catalog-link {
    display: flex !important;
    align-items: center;
    padding: 12px 20px;
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0;
}

.catalog-link:hover {
    background-color: var(--light-color);
    color: var(--accent-color) !important;
    padding-left: 25px;
}

.catalog-link i {
    margin-right: 10px;
    color: #dc3545;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.catalog-link:hover i {
    transform: scale(1.1);
}

.catalog-link span {
    white-space: nowrap;
}

/* ============================
   RESPONSIVE DROPDOWN
   ============================ */

@media (max-width: 991px) {
    .dropdown {
        display: block;
        width: 100%;
    }
    
    .dropdown-content {
        position: static !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0;
        margin: 0;
        min-width: auto;
        transform: none !important;
        transition: none;
    }
    
    .dropdown-content::before,
    .dropdown-content::after {
        display: none;
    }
    
    .catalog-link {
        padding: 15px 30px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        background: rgba(255,255,255,0.05);
    }
    
    .catalog-link:hover {
        padding-left: 35px;
        background: rgba(201, 168, 106, 0.1);
    }
    
    .dropdown-arrow {
        display: none;
    }
    
    .dropbtn {
        pointer-events: none;
        color: var(--medium-gray) !important;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 12px;
        padding: 10px 30px !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .dropbtn:after {
        display: none;
    }
}

@media (max-width: 768px) {
    .catalog-link {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .catalog-link:hover {
        padding-left: 30px;
    }
}

/* Banner Promocional Mejorado */
.promo-banner {
    position: sticky;
    top: 80px;
    width: 100%;
    z-index: 999;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b876 50%, #ffe9b3 100%);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(201, 168, 106, 0.3);
    padding: 0;
    min-height: 70px;
    font-size: 1rem;
    animation: promoBannerFadeIn 0.7s;
    border-bottom: 3px solid var(--accent-color);
}

@keyframes promoBannerFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.promo-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
    padding: 18px 0;
    flex: 1;
    justify-content: center;
}

.promo-icon {
    background: var(--white);
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-icon .fa-credit-card {
    font-size: 1.4em;
    color: var(--accent-color);
}

.promo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.promo-main {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.promo-highlight {
    font-size: 1em;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3px;
}

.promo-detail {
    font-size: 0.9em;
    font-weight: 500;
    color: var(--secondary-color);
}

.promo-secondary {
    margin-top: 2px;
}

.discount-highlight {
    font-size: 1.3em;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.promo-cta {
    margin-right: 20px;
}

.promo-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Contador de tiempo limitado */
.countdown-timer {
    margin-top: 8px;
    text-align: center;
}

.countdown-text {
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
    padding: 4px 6px;
    border-radius: 8px;
    min-width: 35px;
}

.countdown-number {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.countdown-label {
    font-size: 9px;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.countdown-timer .promo-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 11px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: inline-block;
}

.countdown-timer .promo-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.promo-banner-close {
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 2.2em;
    font-weight: bold;
    margin-right: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    line-height: 1;
    opacity: 0.9;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.promo-banner-close:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: #000;
    color: #000;
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .promo-banner {
        font-size: 0.8rem;
        min-height: 50px;
        top: 70px;
        flex-direction: column;
        padding: 8px 0;
        position: relative;
    }
    
    .promo-banner-content {
        gap: 10px;
        padding: 8px 0;
        flex-direction: column;
        text-align: center;
        position: relative;
    }
    
    .promo-icon {
        padding: 4px;
        display: none; /* Ocultar icono en móvil para ahorrar espacio */
    }
    
    .promo-icon .fa-credit-card {
        font-size: 1em;
    }
    
    .promo-highlight {
        font-size: 0.9em;
        line-height: 1.2;
    }
    
    .discount-highlight {
        font-size: 0.85em;
        line-height: 1.2;
    }
    
    .promo-cta {
        margin-right: 0;
        margin-top: 5px;
    }
    
    .promo-btn {
        padding: 6px 12px;
        font-size: 0.75em;
    }
    
    .promo-banner-close {
        position: absolute;
        top: 5px;
        right: 5px;
        font-size: 1.5em;
        font-weight: bold;
        margin-right: 0;
        width: 35px;
        height: 35px;
        background: rgba(0, 0, 0, 0.2);
        border: 2px solid var(--primary-color);
        opacity: 0.9;
    }
    
    /* Optimización específica para el badge de preventa */
    .promo-badge {
        position: static !important;
        transform: none !important;
        order: 1;
        margin-bottom: 8px;
        font-size: 12px !important;
        padding: 6px 12px !important;
        width: auto !important;
        left: auto !important;
        bottom: auto !important;
        display: inline-flex !important;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 90%;
    }
    
    .promo-badge .badge-icon {
        font-size: 14px !important;
    }
    
    .promo-badge .badge-text {
        font-size: 12px !important;
        font-weight: 600 !important;
        letter-spacing: 0.3px !important;
    }
    
    .badge-text-desktop {
        display: none;
    }
    
    .badge-text-mobile {
        display: inline;
    }
}

/* Estilos para desktop - mostrar texto completo */
@media (min-width: 769px) {
    .badge-text-desktop {
        display: inline;
    }
    
    .badge-text-mobile {
        display: none;
    }
    
    /* Optimización del texto principal */
    .promo-text {
        order: 2;
        margin-top: 5px;
    }
    
    .promo-main {
        font-size: 0.9em;
        line-height: 1.3;
        margin-bottom: 3px;
    }
    
    .promo-secondary {
        font-size: 0.8em;
        line-height: 1.2;
    }
    
    /* Optimización del contador */
    .countdown-timer {
        margin-top: 5px;
    }
    
    .countdown-text {
        font-size: 10px;
        margin-bottom: 3px;
    }
    
    .countdown-item {
        padding: 3px 6px;
        font-size: 10px;
        margin: 0 2px;
    }
}

/* Optimización para pantallas muy pequeñas */
@media (max-width: 480px) {
    .promo-banner {
        min-height: 45px;
        padding: 6px 0;
        font-size: 0.75rem;
    }
    
    .promo-banner-content {
        gap: 8px;
        padding: 6px 0;
    }
    
    .promo-badge {
        font-size: 11px !important;
        padding: 5px 10px !important;
        margin-bottom: 6px;
    }
    
    .promo-badge .badge-text {
        font-size: 11px !important;
    }
    
    .promo-highlight {
        font-size: 0.8em;
    }
    
    .discount-highlight {
        font-size: 0.75em;
    }
    
    .promo-btn {
        padding: 5px 10px;
        font-size: 0.7em;
    }
    
    .promo-banner-close {
        width: 30px;
        height: 30px;
        font-size: 1.3em;
        top: 3px;
        right: 3px;
    }
    
    .stock-indicator-top {
        top: 120px;
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 18px;
    }
    
    .stock-indicator-top .stock-text {
        font-size: 11px;
        line-height: 1.2;
    }
}

/* Carrito mejorado con contador visible */
.cart-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent-color), #d4b876);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(201, 168, 106, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    font-size: 24px;
}

.cart-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(201, 168, 106, 0.6);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    animation: cartPulse 2s infinite;
}

@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Cartel rojo de stock limitado en productos */
.stock-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
    animation: stockPulse 2s infinite;
    z-index: 3;
}

.stock-badge .stock-text {
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes stockPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Optimización móvil para productos */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .product-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .product-img {
        height: 200px;
    }
    
    .product-content {
        padding: 20px 15px;
    }
    
    .product-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .product-content p {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .product-benefits {
        gap: 6px;
        margin-top: 8px;
    }
    
    .benefit-tag {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .product-pricing {
        padding: 15px;
    }
    
    .price-main {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .price-discounts {
        gap: 6px;
    }
    
    .discount-item {
        padding: 8px;
    }
    
    .discount-method {
        font-size: 12px;
    }
    
    .discount-price {
        font-size: 13px;
    }
    
    .product-actions {
        padding: 15px;
        gap: 12px;
    }
    
    .view-btn {
        font-size: 12px;
        padding: 8px 16px;
        flex: 1;
    }
    
    .add-to-cart-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .product-badge {
        top: 10px;
        right: 10px;
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .stock-badge {
        bottom: 10px;
        right: 10px;
        padding: 4px 8px;
        font-size: 10px;
    }
    
/* Optimización móvil para formularios */
@media (max-width: 768px) {
    .customer-modal {
        width: 95%;
        max-width: 400px;
        margin: 5vh auto;
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 15px;
    }
    
    .customer-modal h2 {
        font-size: 22px;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 15px;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--primary-color);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 18px;
        font-size: 16px;
        border-radius: 12px;
        border: 2px solid #e9ecef;
        transition: all 0.3s ease;
        background: #f8f9fa;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--accent-color);
        background: white;
        box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.1);
        outline: none;
    }
    
    .form-group textarea {
        min-height: 120px;
        resize: vertical;
        font-family: inherit;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 18px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, var(--accent-color), #d4b876);
        border: none;
        color: white;
        box-shadow: 0 4px 15px rgba(201, 168, 106, 0.3);
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(201, 168, 106, 0.4);
    }
    
    .btn-secondary {
        background: transparent;
        border: 2px solid var(--accent-color);
        color: var(--accent-color);
    }
    
/* ============================
   MEJORAS MÓVILES ESPECÍFICAS
   ============================ */

/* Mejorar usabilidad táctil en móviles */
@media (max-width: 768px) {
    /* Botones más grandes para mejor toque */
    .btn, .btn-primary, .btn-secondary {
        min-height: 48px;
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 12px;
    }
    
    /* Mejorar filtros de productos */
    .products-filter {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        padding: 0 10px;
    }
    
    .filter-btn {
        min-height: 44px;
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 8px;
        margin: 4px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }
    
    .filter-btn.active {
        background: var(--accent-color);
        color: var(--white);
        border-color: var(--accent-color);
    }
    
    /* Mejorar tarjetas de productos */
    .product-card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .product-card:active {
        transform: scale(0.98);
    }
    
    /* Mejorar formularios */
    .form-control, input, textarea, select {
        min-height: 48px;
        font-size: 16px;
        padding: 14px 16px;
        border-radius: 8px;
        border: 2px solid #e9ecef;
        transition: all 0.3s ease;
    }
    
    .form-control:focus, input:focus, textarea:focus, select:focus {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.1);
        outline: none;
    }
    
    /* Mejorar FAQ */
    .faq-question {
        min-height: 60px;
        padding: 20px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .faq-toggle {
        min-width: 30px;
        min-height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: bold;
        color: var(--accent-color);
        background: rgba(201, 168, 106, 0.1);
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .faq-item.active .faq-toggle {
        background: var(--accent-color);
        color: var(--white);
        transform: rotate(45deg);
    }
    
    /* Mejorar galería */
    .gallery-item {
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .gallery-item:active {
        transform: scale(0.98);
    }
    
    /* Mejorar elementos de confianza */
    .hero-trust {
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
    }
    
    .trust-item {
        background: rgba(255, 255, 255, 0.15);
        padding: 12px 16px;
        border-radius: 12px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    /* Mejorar botones de acción del carrito */
    .add-to-cart-btn {
        min-width: 44px;
        min-height: 44px;
        font-size: 18px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .add-to-cart-btn:active {
        transform: scale(0.9);
    }
    
    /* Mejorar navegación móvil */
    .mobile-menu {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: var(--primary-color);
        background: none;
        border: none;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Mejorar logo en móviles pequeños */
    .logo {
        font-size: 22px;
        letter-spacing: 0.5px;
    }
}

/* Optimizaciones para pantallas muy pequeñas */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero h1 {
        font-size: 24px !important;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 22px !important;
        margin-bottom: 30px;
    }
    
    .hero-subtitle strong {
        font-size: 14px;
        margin-right: 8px;
    }
    
    .btn, .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        margin: 8px auto;
        display: block;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 8px;
    }
    
    .product-card {
        margin: 0;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 8px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 8px;
    }
    
    .feature-card {
        margin: 0;
    }
    
    .faq-main-container {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 8px;
    }
    
    .faq-column {
        padding: 16px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 8px;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 8px;
    }
    
    .trust-stat {
        padding: 20px 16px;
    }
    
    .stat-number {
        font-size: 2em;
    }
    
    .stat-label {
        font-size: 13px;
    }
}
    
    .close-customer-modal {
        width: 35px;
        height: 35px;
        font-size: 18px;
        top: 15px;
        right: 15px;
    }
    
    /* Optimización para calculadora */
    .calculator-container {
        padding: 20px 15px;
    }
    
    .calculator-container h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group.half {
        width: 100%;
    }
    
    .results-section {
        padding: 20px 15px;
    }
    
    .results-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .result-item {
        padding: 12px 15px;
        margin-bottom: 10px;
    }
    
    .result-label {
        font-size: 14px;
    }
    
    .result-value {
        font-size: 16px;
    }
    
    .whatsapp-btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        margin-top: 20px;
    }
}