/* =====================================
   CRECER LANDING — rediseño visual
   Portado desde la carpeta Landing (Dropbox), paleta azul/violeta unificada.
===================================== */
:root {
    --background: #F8FAFC;
    --surface: #FFFFFF;
    --primary: #2563EB;
    --secondary: #7C3AED;
    --cyan: #0D9488;
    --text: #0F172A;
    --text-secondary: #475569;
    --border: rgba(226, 232, 240, 0.8);

    /* Radios: un valor por rol, nunca hardcodeados sueltos */
    --radius-pill: 999px;
    --radius-navbar: 22px;
    --radius-card: 20px;
    --radius-surface: 32px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--text);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(37, 99, 235, 0.04), transparent 35%),
        radial-gradient(circle at 82% 25%, rgba(13, 148, 136, 0.04), transparent 35%),
        radial-gradient(circle at 50% 100%, rgba(124, 58, 237, 0.03), transparent 45%),
        var(--background);
    z-index: -10;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container { width: min(1280px, 92%); margin: auto; }

/* =====================================
   BOTONES — un solo gradiente para .btn-primary en todo el sitio
===================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 600;
    transition: all .35s ease;
    box-shadow: 0 20px 50px rgba(37, 99, 235, .35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(37, 99, 235, .5);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: rgba(15, 23, 42, 0.01);
    color: var(--text);
    transition: all .35s ease;
}

.btn-outline:hover {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.1);
}

/* Navbar usa el mismo .btn-primary/.btn-outline a menor escala */
.navbar .btn-primary,
.navbar .btn-outline {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* =====================================
   NAVBAR (flotante, pill)
===================================== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1280px, 94%);
    z-index: 999;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 28px;
    border-radius: var(--radius-navbar);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.logo { display: flex; align-items: center; }
.logo img { height: 40px; width: auto; display: block; object-fit: contain; }

.navbar nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.navbar nav a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.navbar nav a:hover { color: var(--text); }

.navbar .buttons { display: flex; align-items: center; gap: 14px; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 6px;
}

.menu-toggle svg { width: 26px; height: 26px; }

.mobile-menu {
    display: none;
    margin-top: 12px;
    padding: 16px 20px;
    border-radius: var(--radius-navbar);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    flex-direction: column;
    gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    padding: 12px 6px;
    color: var(--text-secondary);
    font-weight: 500;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 860px) {
    .navbar nav,
    .navbar .buttons { display: none; }
    .menu-toggle { display: block; }
}

/* =====================================
   HERO
===================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-top { max-width: 980px; margin: 0 auto; position: relative; z-index: 10; }

.hero-badge {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: #1D4ED8;
    font-size: .9rem;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: .95;
    font-weight: 800;
    letter-spacing: -3px;
    max-width: 980px;
    margin: 25px auto;
    color: var(--text);
}

.hero p {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 700px;
    margin: auto;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* =====================================
   DASHBOARD PREVIEW
===================================== */
.dashboard-section {
    margin-top: 40px;
    padding-bottom: 120px;
    position: relative;
    perspective: 1200px;
}

.dashboard-area { position: relative; max-width: 1200px; margin: 0 auto; transform-style: preserve-3d; }

.dashboard-glow {
    position: absolute;
    width: min(1100px, 90vw);
    height: 600px;
    left: 50%;
    transform: translateX(-50%);
    top: -80px;
    background: radial-gradient(circle, #4F7DFF 0%, transparent 70%);
    filter: blur(120px);
    opacity: .35;
    pointer-events: none;
    z-index: 1;
}

.dashboard-window {
    position: relative;
    z-index: 5;
    overflow: hidden;
    border-radius: 26px;
    background: var(--surface);
    width: 1200px;
    max-width: 100%;
    margin: auto;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(226, 232, 240, 0.8);
}

.dashboard-window img { width: 100%; height: auto; display: block; }

/* Luces estilo Mac OS */
.dashboard-mac-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px 10px;
    background: #F1F5F9;
    border-bottom: 1px solid #E2E8F0;
}

.mac-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
}
.mac-dot.close { background: #FF5F56; }
.mac-dot.minimize { background: #FFBD2E; }
.mac-dot.maximize { background: #27C93F; }

/* Tarjetas flotantes */
.metric-card {
    position: absolute;
    width: 240px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #E2E8F0;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.06);
    z-index: 20;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 125, 255, 0.3);
    box-shadow: 0 26px 50px rgba(15, 23, 42, 0.08), 0 0 20px rgba(79, 125, 255, 0.1);
}

.metric-card span {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: #64748B;
    font-weight: 500;
}

.metric-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.metric-1 { left: -50px; top: 80px; }
.metric-2 { right: -50px; top: 120px; }
.metric-3 { left: -30px; bottom: -30px; }
.metric-4 { right: -30px; bottom: -30px; }

@media (max-width: 1100px) {
    .metric-card { display: none; }
}

/* =====================================
   PRUEBA SOCIAL / MARQUEE
===================================== */
.social-proof-section {
    padding: 60px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    background: rgba(255, 255, 255, 0.96);
    overflow: hidden;
}

.social-proof-title {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-width: 100%;
    gap: 60px;
    animation: scrollMarquee 30s linear infinite;
}

.marquee-item { height: 50px; display: flex; align-items: center; justify-content: center; }

.marquee-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.marquee-item img:hover { opacity: 1; transform: scale(1.1); }

@keyframes scrollMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
}

.impact-stats .stat-item h4 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
}

.impact-stats .stat-item p { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; }

/* =====================================
   ECOSISTEMA / PRODUCTOS
===================================== */
.ecosystem-section {
    padding: 120px 0;
    background: radial-gradient(circle at 50% 30%, rgba(99, 102, 241, 0.06) 0%, rgba(248, 250, 252, 0.95) 60%);
}

.section-header { text-align: center; max-width: 720px; margin: 0 auto 80px; }

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.25);
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 18px;
}

.section-description { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.6; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-surface);
    padding: 48px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 125, 255, 0.25);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.06), 0 0 18px rgba(79, 125, 255, 0.08);
}

.product-card h3 { font-size: 2.4rem; font-weight: 800; color: var(--text); margin-top: 0; margin-bottom: 16px; line-height: 1.1; }
.product-card p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; margin-bottom: 36px; }

.product-features { list-style: none; margin-bottom: 28px; }

.product-features li {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-features li::before { content: "✓"; color: var(--secondary); font-weight: 800; }

.product-card .btn-primary,
.product-card .btn-outline { width: 100%; margin-top: auto; }

/* =====================================
   CARACTERÍSTICAS / BENTO GRID
===================================== */
.features-section { padding: 100px 0; }

.features-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.features-header h2 { font-size: 2.5rem; font-weight: 800; color: var(--text); margin-bottom: 16px; }
.features-header p { font-size: 1.1rem; color: var(--text-secondary); }

.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.bento-card {
    background: var(--surface);
    border: 1px solid #E2E8F0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-card);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.035);
}

.bento-card:hover .bento-card-icon {
    background: rgba(37, 99, 235, 0.12);
    color: var(--primary);
    border-color: rgba(37, 99, 235, 0.2);
}

.bento-card.wide { grid-column: span 2; }

.bento-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(15, 23, 42, 0.01);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.bento-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.bento-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }

@media (max-width: 992px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card.wide { grid-column: span 1; }
}

/* =====================================
   MÉTRICAS
===================================== */
.stats-section { padding: 80px 0; }

.stats-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3)), var(--surface);
    background-blend-mode: overlay;
    border: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.05);
    transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.stats-container .stat-item { display: flex; flex-direction: column; align-items: center; position: relative; }

.stats-container .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(15, 23, 42, 0.04);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    background: linear-gradient(180deg, var(--text), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .stats-container { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .stats-container .stat-item:not(:last-child)::after { display: none; }
}

@media (max-width: 576px) {
    .stats-container { grid-template-columns: 1fr; gap: 32px; }
}

/* =====================================
   ACERCA DE / NOSOTROS
===================================== */
.about-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    color: var(--text);
    border-radius: 24px;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-card h2,
.about-card p {
    color: var(--text);
}

.about-card .section-badge {
    background: rgba(168, 85, 247, 0.08);
    color: #7C3AED;
    border-color: rgba(168, 85, 247, 0.15);
}

.about-info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-info-box {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.9);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
}

.about-info-box h3 {
    color: var(--text);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.about-info-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 8px;
}

/* =====================================
   CTA
===================================== */
.cta-section { padding: 120px 0; }

.cta-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: var(--radius-surface);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04), 0 0 18px rgba(124, 58, 237, 0.05);
}

.cta-content { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }

.cta-title {
    font-size: clamp(2.3rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-description { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 40px; }

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

/* =====================================
   GLASS GLOW BORDER
===================================== */
.glass-glow-border {
    position: relative;
}

.glass-glow-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(168, 85, 247, 0.2), rgba(255, 255, 255, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* =====================================
   FOOTER
===================================== */
.site-footer {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    position: relative;
    padding-top: 60px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.footer-gradient-line {
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), var(--cyan), transparent);
    opacity: 0.6;
}

.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 48px; margin-bottom: 48px; }

.footer-logo { max-width: 170px; width: auto; height: auto; object-fit: contain; margin-bottom: 16px; }

.footer-description { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; max-width: 280px; margin-bottom: 20px; }

.system-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
}

.status-dot {
    width: 8px; height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.status-text { color: #16a34a; font-size: 0.78rem; font-weight: 500; }

.footer-heading { color: var(--text); font-size: 0.95rem; font-weight: 600; margin-bottom: 20px; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-secondary); font-size: 0.9rem; transition: all 0.25s ease; }
.footer-links a:hover { color: var(--cyan); transform: translateX(3px); }

.contact-label { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 8px; opacity: 0.8; }

.contact-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--cyan); font-weight: 600; font-size: 0.95rem; transition: opacity 0.25s; }
.contact-phone:hover { opacity: 0.85; }

.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; color: var(--text-secondary); font-size: 0.85rem; opacity: 0.7; }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* =====================================
   WHATSAPP FLOAT
===================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: rgba(37, 211, 102, 0.25);
    border-color: rgba(37, 211, 102, 0.8);
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover svg { transform: rotate(8deg); }

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s infinite ease-in-out;
    pointer-events: none;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-float svg { width: 26px; height: 26px; }
}

/* =====================================
   COOKIE BANNER
===================================== */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--text);
    color: #fff;
    padding: 16px 24px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.cookie-banner.show { display: flex; }

.cookie-banner p { font-size: 0.9rem; line-height: 1.5; }
.cookie-banner a { text-decoration: underline; }
.cookie-banner a:hover { opacity: 0.8; }

.cookie-banner button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    flex-shrink: 0;
}

/* =====================================
   ACCESIBILIDAD — respeta reduced motion
===================================== */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}
