/* === ALMA KIDS: MASTER STYLE 2025 === */

:root {
    --primary: #FF6B9D; /* Rosa Alma */
    --secondary: #4ecdc4; /* Turquesa */
    --text-dark: #1D1D1F;
    --text-grey: #86868B;
    --bg-body: #F5F5F7;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 15px 40px rgba(0,0,0,0.15);
    
    /* Colores Pasteles */
    --pastel-pink: #FFE5F1;
    --pastel-blue: #E3F2FD;
    --pastel-yellow: #FFF9E6;
    --pastel-green: #E8F5E9;
    --pastel-purple: #F3E5F5;
    --pastel-peach: #FFE8E0;
}

/* RESET & BASE */
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html { 
    scroll-behavior: smooth;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body { 
    font-family: 'Inter', sans-serif; 
    background: var(--bg-body); 
    color: var(--text-dark); 
    padding: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    overflow-x: hidden;
    min-height: 100vh;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

/* LAYOUT */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.section { padding: 80px 0; position: relative; }

.text-center { text-align: center; }

.bg-grey { background: var(--white); }

.bg-dark { background: #1D1D1F; color: white; }

/* BARRA DE COBERTURA CON DECORACIÓN PASTEL */
.coverage-banner {
    background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-blue) 50%, var(--pastel-yellow) 100%) !important;
    color: var(--text-dark) !important;
    padding: 14px 0 !important;
    text-align: center !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 999 !important;
    box-shadow: 0 2px 15px rgba(255, 107, 157, 0.15) !important;
    border-bottom: 2px solid rgba(255, 107, 157, 0.2) !important;
    margin: 0 !important;
    margin-top: 0 !important;
    overflow: hidden !important;
}

.coverage-banner::before {
    content: '✨';
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

.coverage-banner::after {
    content: '🎈';
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite 1.5s;
}

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

.coverage-banner i { margin-right: 8px; }

.coverage-banner strong { font-weight: 700; }

/* HEADER COMPLETO CON DECORACIÓN PASTEL */
.site-header { 
    position: sticky !important; 
    top: 0 !important;
    margin-top: 0 !important; 
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.98) 0%, 
        rgba(255,229,241,0.95) 30%,
        rgba(227,242,253,0.95) 70%,
        rgba(255,249,230,0.95) 100%
    ); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000; 
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, var(--pastel-pink), var(--pastel-blue), var(--pastel-yellow), var(--pastel-green)) 1;
    box-shadow: 0 4px 25px rgba(255, 107, 157, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Decoración flotante en header */
.site-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--pastel-pink) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
    animation: drift 20s linear infinite;
}

.site-header::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--pastel-blue) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
    animation: drift 15s linear infinite reverse;
}

@keyframes drift {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(100px, 100px) rotate(360deg); }
}

.header-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
    height: 80px;
    min-height: 80px;
    position: relative;
    gap: 20px;
}

/* LOGO LINK - ESTRUCTURA COMPLETA */
.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 120px;
    position: relative;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* LOGO BASE */
.logo { 
    height: auto;
    width: auto;
    max-height: 60px;
    max-width: 220px;
    object-fit: contain;
    object-position: left center;
    transition: all 0.3s ease;
    display: block;
}

/* LOGO NAVIDEÑO - SIEMPRE VISIBLE Y BIEN ESTRUCTURADO */
.logo-navidad {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 60px;
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 4px 10px rgba(255, 107, 157, 0.2));
    position: relative;
    z-index: 2;
}

/* LOGO NORMAL - OCULTO */
.logo-normal {
    display: none !important;
    visibility: hidden !important;
}

/* EFECTO ESPECIAL PARA LOGO NAVIDEÑO */
.logo-navidad:hover {
    filter: drop-shadow(0 6px 15px rgba(255, 107, 157, 0.4));
    transform: scale(1.05);
    animation: logo-sparkle 2s ease-in-out infinite;
}

@keyframes logo-sparkle {
    0%, 100% { 
        filter: drop-shadow(0 4px 10px rgba(255, 107, 157, 0.2)); 
    }
    50% { 
        filter: drop-shadow(0 6px 20px rgba(255, 107, 157, 0.5)) 
                drop-shadow(0 0 10px rgba(255, 215, 0, 0.3)); 
    }
}

/* RESPONSIVE - LOGO NAVIDEÑO PARA TODOS LOS DISPOSITIVOS */
/* Tablet */
@media(max-width: 1024px) {
    .logo-navidad {
        max-height: 55px;
        max-width: 200px;
    }
    
    .logo {
        max-height: 55px;
        max-width: 200px;
    }
}

/* Móvil Grande */
@media(max-width: 768px) {
    .logo-navidad {
        max-height: 50px;
        max-width: 180px;
    }
    
    .logo {
        max-height: 50px;
        max-width: 180px;
    }
    
    .header-flex {
        height: 70px;
        min-height: 70px;
    }
    
    .logo-link {
        min-width: 100px;
    }
}

/* Móvil Pequeño */
@media(max-width: 480px) {
    .logo-navidad {
        max-height: 45px;
        max-width: 160px;
    }
    
    .logo {
        max-height: 45px;
        max-width: 160px;
    }
    
    .header-flex {
        height: 65px;
        min-height: 65px;
    }
    
    .logo-link {
        min-width: 90px;
    }
}

/* Móvil Muy Pequeño */
@media(max-width: 360px) {
    .logo-navidad {
        max-height: 40px;
        max-width: 140px;
    }
    
    .logo {
        max-height: 40px;
        max-width: 140px;
    }
}

.logo:hover { 
    transform: scale(1.05) rotate(2deg); 
}

/* NAVEGACIÓN DESKTOP */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pastel-pink), var(--primary), var(--pastel-blue));
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-whatsapp-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* MENÚ TOGGLE MÓVIL */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* NAVEGACIÓN MÓVIL */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.98) 0%,
        rgba(255,229,241,0.98) 25%,
        rgba(227,242,253,0.98) 50%,
        rgba(255,249,230,0.98) 75%,
        rgba(232,245,233,0.98) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, var(--pastel-pink), var(--pastel-blue), var(--pastel-yellow)) 1;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.15);
    padding: 20px 0;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.nav-mobile.active {
    max-height: 500px;
    display: flex;
}

.nav-link-mobile {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    padding: 15px 30px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-link-mobile:hover {
    background: linear-gradient(90deg, var(--pastel-pink), var(--pastel-blue));
    border-left-color: var(--primary);
    color: var(--primary);
    padding-left: 35px;
    box-shadow: inset 0 0 20px rgba(255, 107, 157, 0.1);
}

.btn-whatsapp-mobile {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px 30px;
    margin: 10px 20px;
    border-radius: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* HERO CON ANIMACIONES */
.hero { 
    text-align: center; 
    padding: 120px 20px 80px; 
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-content { position: relative; z-index: 2; }

.hero h1 { 
    font-size: clamp(2.5rem, 6vw, 5rem); 
    font-weight: 900; 
    line-height: 1.1; 
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.highlight { 
    background: linear-gradient(135deg, #FF6B9D, #FFC107, #FF6B9D); 
    background-size: 200% auto;
    -webkit-background-clip: text; 
    background-clip: text; 
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero p { 
    font-size: clamp(1rem, 2vw, 1.3rem); 
    color: #666; 
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* BOTONES */
.btn-primary { 
    background: linear-gradient(135deg, var(--primary), #FF8E9B); 
    color: white; 
    padding: 18px 40px; 
    border-radius: 50px; 
    font-weight: 700; 
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    font-size: 16px;
}

.btn-primary:hover { 
    transform: translateY(-3px) scale(1.05); 
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.btn-primary i { transition: transform 0.3s; }

.btn-primary:hover i { transform: translateY(3px); }

.btn-text {
    color: var(--primary);
    font-weight: 600;
    margin-top: 20px;
    display: inline-block;
    transition: all 0.3s;
}

.btn-text:hover { transform: translateX(5px); }

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--primary);
    font-size: 24px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ANIMACIONES DE ENTRADA */
.animated-section { opacity: 0; }

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* GRID PRODUCTOS (ESTILO APPLE) */
.grid-productos { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px; 
    margin-top: 50px; 
}

.card { 
    background: white; 
    border-radius: 24px; 
    overflow: hidden; 
    box-shadow: var(--shadow); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    position: relative; 
    border: 1px solid rgba(0,0,0,0.03); 
    display: flex; 
    flex-direction: column;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }

.card:hover { 
    transform: translateY(-10px) scale(1.02); 
    box-shadow: var(--shadow-hover);
}

/* FIX IMÁGENES */
.card-img { 
    height: 280px; 
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0); 
    overflow: hidden; 
    position: relative;
}

.card-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.card-img { 
    cursor: pointer;
    position: relative;
}

.card-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}

.card:hover .card-img img { 
    transform: scale(1.1) rotate(1deg); 
}

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.8), rgba(78, 205, 196, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: white;
    gap: 10px;
}

.zoom-overlay i {
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform 0.3s;
}

.zoom-overlay span {
    font-size: 0.9rem;
    font-weight: 600;
}

.card-img:hover .zoom-overlay {
    opacity: 1;
}

.card-img:hover .zoom-overlay i {
    transform: scale(1);
}

.card-body { 
    padding: 30px; 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
}

.card h3 { 
    font-size: 1.5rem; 
    margin-bottom: 8px; 
    font-weight: 700;
    color: var(--text-dark);
}

.card p { 
    font-size: 0.95rem; 
    color: #666; 
    margin-bottom: 15px; 
    flex-grow: 1;
    line-height: 1.6;
}

.card-desc-short {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-ver-detalles {
    width: 100%;
    margin: 15px 0;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--pastel-pink);
    color: var(--primary);
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-ver-detalles:hover {
    background: var(--pastel-pink);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.2);
}

.card-features {
    list-style: none;
    margin: 15px 0;
    padding: 0;
}

.card-features li {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-features i {
    color: var(--primary);
    font-size: 12px;
}

.price { 
    font-size: 1.8rem; 
    font-weight: 900; 
    color: var(--primary); 
    margin-top: auto;
    margin-bottom: 15px;
}

.badge { 
    position: absolute; 
    top: 20px; 
    right: 20px; 
    background: linear-gradient(135deg, #FFD700, #FFA500); 
    color: #000; 
    padding: 8px 15px; 
    border-radius: 20px; 
    font-weight: 700; 
    font-size: 12px; 
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); 
    z-index: 10;
    animation: pulse-badge 2s ease-in-out infinite;
}

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

.btn-add { 
    width: 100%; 
    margin-top: 15px; 
    background: var(--bg-body); 
    color: var(--text-dark); 
    border: none; 
    padding: 15px; 
    border-radius: 15px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.btn-add::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-add:hover::before {
    width: 300px;
    height: 300px;
}

.btn-add:hover { 
    background: var(--primary); 
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

.btn-add span {
    position: relative;
    z-index: 1;
}

/* BENEFICIOS */
.benefits-section {
    background: var(--white);
}

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

.benefit-card {
    background: var(--bg-body);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #FF8E9B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* SECCIÓN REDES SOCIALES */
.social-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--pastel-pink) 50%, var(--pastel-blue) 100%);
    padding: 100px 0;
}

.social-header {
    margin-bottom: 50px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.instagram-btn {
    background: linear-gradient(135deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}

.instagram-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(225, 48, 108, 0.4);
}

.facebook-btn {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
    color: white;
}

.facebook-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(24, 119, 242, 0.4);
}

.social-btn i {
    font-size: 1.5rem;
}

.insta-section {
    margin-top: 60px;
}

.insta-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.insta-title i {
    color: #E1306C;
}

.insta-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* INSTAGRAM GRID */
.insta-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 10px; 
    margin: 40px 0; 
    border-radius: 20px; 
    overflow: hidden; 
}

.insta-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
    display: block;
}

.insta-item:hover {
    transform: scale(1.05);
    z-index: 2;
}

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

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

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.85), rgba(131, 58, 180, 0.85));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 10px;
}

.insta-overlay i {
    font-size: 2.5rem;
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.insta-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.insta-item:hover .insta-overlay i {
    transform: scale(1);
}

.btn-instagram-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
    margin-top: 30px;
}

.btn-instagram-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(225, 48, 108, 0.4);
}

.btn-instagram-large i {
    font-size: 1.3rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

details { 
    background: white; 
    margin-bottom: 15px; 
    border-radius: 15px; 
    padding: 25px; 
    box-shadow: var(--shadow); 
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

details:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

details[open] {
    border-color: var(--primary);
}

summary { 
    font-weight: 700; 
    cursor: pointer; 
    list-style: none; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-dark);
}

summary::-webkit-details-marker { display: none; }

summary i {
    transition: transform 0.3s;
    color: var(--primary);
}

details[open] summary i {
    transform: rotate(180deg);
}

details p { 
    margin-top: 15px; 
    color: #555; 
    line-height: 1.7; 
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* SECCIÓN SOBRE NOSOTROS */
.about-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--pastel-pink) 100%);
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    max-width: 600px;
}

.badge-about {
    display: inline-block;
    background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-blue));
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-text {
    margin: 30px 0;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-text strong {
    color: var(--primary);
    font-weight: 700;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--pastel-pink);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.image-badge i {
    color: #FF3B30;
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

/* MODAL ZOOM DE IMÁGENES */
.image-zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.zoom-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.zoom-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10001;
}

.zoom-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg);
}

.zoom-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.zoom-caption {
    margin-top: 20px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

/* MODAL DETALLES COMPLETOS */
.product-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

.details-modal-content {
    background: white;
    border-radius: 30px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.details-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--pastel-pink);
    border: none;
    color: var(--text-dark);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.details-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg) scale(1.1);
}

.details-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-blue));
    border-radius: 30px 30px 0 0;
}

.details-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.details-title-section h2 {
    font-size: 2rem;
    margin: 10px 0;
    color: var(--text-dark);
}

.details-badge {
    display: inline-block;
    background: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.details-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-top: 15px;
}

.details-body {
    padding: 40px;
}

.details-body h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--text-dark);
    border-bottom: 2px solid var(--pastel-pink);
    padding-bottom: 10px;
}

.details-body h3:first-child {
    margin-top: 0;
}

.details-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    white-space: pre-line;
    margin-bottom: 20px;
}

.details-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-features li {
    padding: 12px 0;
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #eee;
}

.details-features li:last-child {
    border-bottom: none;
}

.details-features i {
    color: var(--primary);
    font-size: 1.2rem;
}

.details-footer {
    padding: 30px 40px;
    background: var(--bg-body);
    border-radius: 0 0 30px 30px;
    border-top: 2px solid var(--pastel-pink);
}

.btn-add-large {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary), #FF8E9B);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.btn-add-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

/* CONTACTO MODERNO */
.contact-section-modern {
    background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-pink) 50%, var(--pastel-yellow) 100%);
    padding: 100px 0;
}

.contact-header {
    margin-bottom: 60px;
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-card-modern {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--pastel-pink);
}

.contact-card-header i {
    font-size: 2rem;
    color: var(--primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pastel-pink);
    border-radius: 50%;
}

.contact-card-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.whatsapp-status-modern {
    margin-bottom: 30px;
}

.whatsapp-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.1));
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-card:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(18, 140, 126, 0.2));
    border-color: rgba(37, 211, 102, 0.5);
    transform: translateX(5px);
}

.whatsapp-icon-large {
    position: relative;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-details {
    flex: 1;
}

.whatsapp-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.whatsapp-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.whatsapp-status-text {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse-status 2s ease-in-out infinite;
}

.contact-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.contact-item-modern:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--pastel-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value:hover {
    color: var(--primary);
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-modern label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group-modern label i {
    color: var(--primary);
}

.form-group-modern input,
.form-group-modern textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--bg-body);
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
}

.form-group-modern textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit-modern {
    padding: 18px 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    margin-top: 10px;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.contact-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.contact-link i {
    font-size: 24px;
}

/* WHATSAPP STATUS */
.whatsapp-status-container {
    margin-bottom: 20px;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(37, 211, 102, 0.15);
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: 15px;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: rgba(37, 211, 102, 0.5);
    transform: translateX(5px);
}

.whatsapp-icon-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    font-size: 24px;
    color: white;
}

.whatsapp-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: #4CAF50;
    border: 2px solid white;
    border-radius: 50%;
    animation: pulse-status 2s ease-in-out infinite;
}

.whatsapp-status-dot.offline {
    background: #999;
    animation: none;
}

@keyframes pulse-status {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.whatsapp-info {
    flex: 1;
}

.whatsapp-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.whatsapp-status-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 5px;
}

.whatsapp-status-text::before {
    content: '●';
    color: #4CAF50;
    font-size: 10px;
    animation: blink 2s ease-in-out infinite;
}

.whatsapp-status-text.offline::before {
    color: #999;
    animation: none;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input {
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.15);
}

.contact-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.contact-form button {
    padding: 15px 30px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
}

/* BARRA MÓVIL */
.mobile-nav { 
    position: fixed; 
    bottom: 25px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 90%; 
    max-width: 400px; 
    background: rgba(30,30,30,0.95); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px; 
    padding: 15px 30px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    z-index: 2000; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.nav-item { 
    color: #999; 
    text-align: center; 
    font-size: 11px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 5px; 
    cursor: pointer; 
    transition: all 0.3s;
}

.nav-item:hover {
    color: white;
    transform: translateY(-2px);
}

.nav-item i { 
    font-size: 22px; 
    color: white; 
    transition: transform 0.3s;
}

.nav-item:hover i {
    transform: scale(1.1);
}

.icon-wrap { position: relative; }

.nav-item .badge { 
    position: absolute; 
    top: -8px; 
    right: -10px; 
    background: #FF3B30; 
    color: white; 
    width: 20px; 
    height: 20px; 
    font-size: 11px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 0;
    border-radius: 50%;
    font-weight: 700;
    animation: pulse-badge 2s ease-in-out infinite;
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, #1D1D1F, #2D2D2F) !important;
    color: white !important;
    padding: 60px 0 30px !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    width: 100% !important;
    clear: both !important;
}

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

.footer-brand {
    text-align: left;
}

.footer-logo {
    max-height: 50px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    text-align: left;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-social {
    text-align: left;
}

.social-icons-footer {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-icon-footer {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-footer:hover {
    background: var(--primary);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

.social-icon-footer:nth-child(1):hover {
    background: linear-gradient(135deg, #405DE6, #E1306C);
}

.social-icon-footer:nth-child(2):hover {
    background: #1877F2;
}

.social-icon-footer:nth-child(3):hover {
    background: #25D366;
}

.footer-contact {
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-contact i {
    margin-right: 8px;
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
    margin: 5px 0;
}

.footer-location {
    margin-top: 10px;
    font-size: 0.85rem;
}

.footer-location i {
    margin-right: 5px;
    color: var(--primary);
}

/* ELEMENTOS DECORATIVOS PASTELES */
.decorative-elements {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float-circle 20s ease-in-out infinite;
}

.decorative-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    background: var(--pastel-pink);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.decorative-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    background: var(--pastel-blue);
    top: 60%;
    right: -3%;
    animation-delay: 5s;
}

.decorative-circle:nth-child(3) {
    width: 250px;
    height: 250px;
    background: var(--pastel-yellow);
    bottom: 10%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes float-circle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* RESPONSIVE */
@media(max-width: 968px) {
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .site-header {
        top: 0;
    }
}

@media(max-width: 768px) {
    .coverage-banner { 
        font-size: 12px; 
        padding: 10px 0; 
        top: 0;
    }
    
    .site-header { 
        top: 0;
    }
    
    .header-flex {
        height: 70px;
    }
    
    .logo { 
        height: 45px; 
    }
    
    .hero { 
        padding: 100px 20px 60px; 
        min-height: 80vh; 
    }
    
    .section { 
        padding: 60px 0; 
    }
    
    .grid-productos { 
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    .insta-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .social-buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-brand,
    .footer-links,
    .footer-social {
        text-align: center;
    }
    
    .hero h1 { 
        font-size: 2.5rem; 
    }
    
    .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-card-modern {
        padding: 30px 20px;
    }
    
    .details-header {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .details-image {
        height: 150px;
    }
    
    .details-body {
        padding: 30px 20px;
    }
    
    .details-footer {
        padding: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mobile-nav {
        width: 95%;
        padding: 12px 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
}

/* INTERSECCTION OBSERVER PARA ANIMACIONES */
.visible {
    opacity: 1 !important;
}

/* BOTÓN FLOTANTE WHATSAPP - Rediseño Completo Profesional */
.whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 1999 !important;
    display: flex !important;
    flex-direction: column-reverse !important;
    align-items: flex-end !important;
    gap: 20px !important;
}

/* Botón WhatsApp - Grande y llamativo */
.whatsapp-btn {
    width: 70px !important;
    height: 70px !important;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 36px !important;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5),
                0 0 0 0 rgba(37, 211, 102, 0.7),
                0 0 0 0 rgba(37, 211, 102, 0.5) !important;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    text-decoration: none !important;
    border: none !important;
    position: relative !important;
    animation: whatsapp-pulse 2s ease-in-out infinite !important;
    cursor: pointer !important;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.7),
                0 0 0 10px rgba(37, 211, 102, 0.1),
                0 0 0 20px rgba(37, 211, 102, 0.05);
    background: linear-gradient(135deg, #20BA5A 0%, #0F7A6E 100%);
}

.whatsapp-btn:hover::before {
    opacity: 1;
}

.whatsapp-btn i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Burbuja de mensaje - Posicionada arriba, muy visible */
.whatsapp-bubble {
    position: relative !important;
    background: #25D366 !important;
    color: white !important;
    padding: 16px 22px !important;
    border-radius: 20px 20px 20px 4px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    white-space: normal !important;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4),
                0 4px 15px rgba(0, 0, 0, 0.2) !important;
    animation: whatsapp-bubble-appear 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards,
               whatsapp-bubble-float 3s ease-in-out infinite 0.6s !important;
    max-width: 300px !important;
    text-align: left !important;
    letter-spacing: 0.3px !important;
    line-height: 1.5 !important;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    margin-bottom: 10px !important;
}

.whatsapp-bubble span {
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Flecha de la burbuja apuntando al botón */
.whatsapp-bubble::after {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    right: 20px !important;
    width: 0 !important;
    height: 0 !important;
    border-style: solid !important;
    border-width: 8px 8px 0 8px !important;
    border-color: #25D366 transparent transparent transparent !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15)) !important;
}

/* Animaciones mejoradas */
@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5),
                    0 0 0 0 rgba(37, 211, 102, 0.7),
                    0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6),
                    0 0 0 8px rgba(37, 211, 102, 0.1),
                    0 0 0 16px rgba(37, 211, 102, 0.05);
    }
}

@keyframes whatsapp-bubble-appear {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes whatsapp-bubble-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive para WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        gap: 18px;
    }
    
    .whatsapp-btn {
        width: 65px;
        height: 65px;
        font-size: 32px;
    }
    
    .whatsapp-bubble {
        font-size: 14px;
        padding: 14px 18px;
        max-width: 260px;
        white-space: normal;
        text-align: left;
        border-radius: 18px 18px 18px 4px;
    }
    
    .whatsapp-bubble::after {
        right: 18px;
        bottom: -7px;
        border-width: 7px 7px 0 7px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .whatsapp-bubble {
        font-size: 13px;
        padding: 12px 16px;
        max-width: 220px;
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent #25D366;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 75px;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1);
    }
}

@keyframes bounce-whatsapp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* GALERÍA DE IMÁGENES DEL PDF */
.gallery-section {
    background: linear-gradient(135deg, var(--pastel-yellow), var(--pastel-green));
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.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: linear-gradient(135deg, rgba(255, 107, 157, 0.8), rgba(78, 205, 196, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-overlay i {
    font-size: 3rem;
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

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

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* BOTÓN SCROLL TO TOP */
.scroll-to-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFB6C1, #FFC0CB);
    border: 3px solid white;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 1998;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #FFA0B4, #FFB6C1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 182, 193, 0.6);
}

.scroll-to-top i {
    animation: bounce-up 1.5s ease-in-out infinite;
}

@keyframes bounce-up {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Responsive WhatsApp Float y Scroll to Top - MÓVILES */
@media(max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        gap: 18px;
    }
    
    .whatsapp-btn {
        width: 65px;
        height: 65px;
        font-size: 32px;
        border: none;
    }
    
    .whatsapp-bubble {
        font-size: 14px;
        padding: 14px 18px;
        max-width: 260px;
        white-space: normal;
        line-height: 1.5;
        border-radius: 18px 18px 18px 4px;
    }
    
    .whatsapp-bubble::after {
        right: 18px;
        bottom: -7px;
        border-width: 7px 7px 0 7px;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        left: 15px;
        border-width: 2px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Tablets pequeñas */
@media(max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        gap: 16px;
    }
    
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .whatsapp-bubble {
        font-size: 13px;
        padding: 12px 16px;
        max-width: 220px;
        border-radius: 16px 16px 16px 4px;
    }
    
    .whatsapp-bubble::after {
        right: 16px;
        bottom: -6px;
        border-width: 6px 6px 0 6px;
    }
    
    .scroll-to-top {
        width: 42px;
        height: 42px;
        font-size: 16px;
        bottom: 18px;
        left: 12px;
    }
}

/* Móviles pequeños */
@media(max-width: 375px) {
    .whatsapp-float {
        bottom: 12px;
        right: 12px;
        gap: 14px;
    }
    
    .whatsapp-btn {
        width: 58px;
        height: 58px;
        font-size: 26px;
    }
    
    .whatsapp-bubble {
        font-size: 12px;
        padding: 11px 14px;
        max-width: 200px;
        border-radius: 15px 15px 15px 4px;
    }
    
    .whatsapp-bubble::after {
        right: 14px;
        bottom: -6px;
        border-width: 6px 6px 0 6px;
    }
    
    .scroll-to-top {
        width: 40px;
        height: 40px;
        font-size: 15px;
        bottom: 15px;
        left: 10px;
    }
}

/* Móviles muy pequeños */
@media(max-width: 320px) {
    .whatsapp-float {
        bottom: 10px;
        right: 10px;
        gap: 12px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .whatsapp-bubble {
        font-size: 11px;
        padding: 10px 12px;
        max-width: 180px;
        border-radius: 14px 14px 14px 4px;
    }
    
    .whatsapp-bubble::after {
        right: 12px;
        bottom: -5px;
        border-width: 5px 5px 0 5px;
    }
    
    .scroll-to-top {
        width: 38px;
        height: 38px;
        font-size: 14px;
        bottom: 12px;
        left: 8px;
    }
}

/* Responsive adicional para galería y secciones */
@media(max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-section {
        padding: 60px 0;
    }
}

/* CATÁLOGO CANVA EMBEBIDO */
.catalogo-canva-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #FFF5F5 0%, #F0F8FF 100%);
    position: relative;
    overflow: hidden;
}

.catalogo-canva-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23FFB6C1" opacity="0.1"/></svg>');
    pointer-events: none;
}

.catalogo-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.catalogo-update-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFB6C1, #FFC0CB);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

.catalogo-update-badge i {
    animation: rotate-icon 2s linear infinite;
}

@keyframes rotate-icon {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.canva-embed-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 15px;
}

.canva-embed-container > div {
    border-radius: 15px !important;
    overflow: hidden !important;
}

.canva-embed-container iframe {
    border-radius: 15px !important;
}

.canva-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #999;
    font-size: 12px;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.canva-link:hover {
    opacity: 1;
}

/* Placeholder mientras se agrega el código de Canva */
.canva-placeholder {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #FFF5F5, #F0F8FF);
    border-radius: 15px;
    border: 3px dashed #FFB6C1;
}

.canva-placeholder i {
    font-size: 64px;
    color: #FFB6C1;
    margin-bottom: 20px;
    opacity: 0.5;
}

.canva-placeholder p {
    color: #666;
    font-size: 18px;
    margin-bottom: 10px;
}

.placeholder-instructions {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.placeholder-instructions strong {
    color: #FF6B9D;
}

/* OCULTAR BOTONES FLOTANTES MÓVILES DEBAJO DEL FOOTER */
.mobile-float-buttons {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Asegurar que los botones flotantes no aparezcan debajo del footer */
footer {
    position: relative;
    z-index: 1;
}

.whatsapp-float,
.scroll-to-top {
    position: fixed !important;
    z-index: 1999 !important;
}

/* Ocultar botones flotantes cuando están cerca del footer */
@media (min-width: 769px) {
    .mobile-float-buttons {
        display: none !important;
    }
}

/* Responsive para Catálogo Canva */
@media(max-width: 768px) {
    .catalogo-canva-section {
        padding: 60px 0;
    }
    
    .canva-embed-container {
        padding: 15px;
        border-radius: 15px;
    }
    
    .canva-embed-container > div {
        border-radius: 10px !important;
    }
    
    .canva-embed-container iframe {
        border-radius: 10px !important;
    }
    
    .catalogo-update-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .canva-placeholder {
        padding: 40px 15px;
    }
    
    .canva-placeholder i {
        font-size: 48px;
    }
    
    .canva-placeholder p {
        font-size: 16px;
    }
    
    .placeholder-instructions {
        font-size: 13px;
        padding: 15px;
    }
}

@media(max-width: 480px) {
    .canva-embed-container {
        padding: 10px;
    }
    
    .canva-embed-container > div {
        border-radius: 8px !important;
    }
    
    .canva-embed-container iframe {
        border-radius: 8px !important;
    }
    
    .catalogo-update-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .canva-placeholder {
        padding: 30px 10px;
    }
    
    .canva-placeholder i {
        font-size: 40px;
    }
    
    .placeholder-instructions {
        font-size: 12px;
        padding: 12px;
    }
}

@media(max-width: 375px) {
    .canva-embed-container iframe {
        height: 450px;
    }
}
