/* ========================================
   Notifica Legal — Sistema de diseño (v4.1 "Sello Judicial")
   Fuente única de tokens. Institucional + SaaS moderno.
     60% blanco #FFFFFF / héroes #EEF1FF (claridad, aire)
     30% azul #2321A5 + navy #16155E (identidad) · texto #1E293B (nunca negro puro)
     10% CTA "sello" #EA7A18 (hover eléctrico #F59E0B; texto blanco)
   El CTA naranjo-sello existe SOLO en botones de conversión.
   Semánticos = SOLO estados, nunca marca: verde éxito/ahorro, ámbar alerta,
   rojo error, azul apoyo info. Cada uno con su tinte para fondos de estado.
   Público receptor ~58 años: menos color, menos iconos, cero degradados/blobs/glows,
   animaciones discretas o ninguna, tipografía grande, contraste AA/AAA.
   Dorado/burdeo: retirados. Referencia viva en styleguide.php (LOCAL, no publicado).
   ======================================== */

:root {
    /* ---- 30% · Azul (identidad / estructura) ---- */
    --primary: #2321a5;        /* azul de marca: nav, títulos, íconos */
    --primary-light: #5271ff;  /* info / apoyo / enlaces / detalles */
    --primary-dark: #16155E;   /* navy profundo: footer, banners oscuros, hover del azul */
    --navy: #16155E;           /* alias explícito del navy profundo */
    --blue-soft: #dce2ff;      /* superficies azul claro (badges, bordes suaves) */
    --blue-mist: #eef1ff;      /* superficie azul muy clara (fondos de ícono) */

    /* ---- 10% · CTA "sello" (v4.1) — complementario cálido del azul ---- */
    --cta: #EA7A18;            /* SOLO botones de conversión */
    --cta-hover: #F59E0B;      /* hover: más eléctrico, no más oscuro */
    --cta-ink: #ffffff;        /* texto sobre el CTA: blanco (decisión del usuario 2026-07-12) */
    --cta-soft: #FFEDD5;       /* tinte del CTA para fondos puntuales */

    /* ---- Semánticos (estados, NUNCA marca ni CTA) ---- */
    --green: #047857;          /* éxito / ahorro / beneficios */
    --green-dark: #065F46;     /* texto sobre tinte de éxito */
    --green-soft: #d1fae5;     /* tinte de éxito: fondo de estados, nunca botón */
    --amber: #B45309;          /* alerta / pendiente */
    --amber-soft: #FEF3C7;     /* tinte de alerta */
    --red: #B91C1C;            /* error / advertencia */
    --red-soft: #FEE2E2;       /* tinte de error */

    /* ---- 60% · Blanco / claridad ---- */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;       /* gris ultra claro: secciones alternas */
    --hero-bg: #EEF1FF;        /* v4.0: fondo de héroes (azul muy claro institucional) */
    --surface: #ffffff;        /* fondo de tarjetas */

    /* ---- Texto (v4.1) ---- */
    --dark: #1E293B;           /* texto principal: azul medianoche, nunca negro puro */
    --text: #1E293B;
    --text-muted: #64748B;     /* texto secundario */

    /* ---- Grises de apoyo ---- */
    --gray-200: #dce2ff;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --border: #D7DDF5;         /* v4.0: bordes / divisores azulados sutiles */

    /* ---- Acentos degradados (micro-dosis — NO usar como color funcional dominante) ---- */
    --gold: #ffc107;           /* solo badges puntuales / guiño de marca */
    --wine: #8c3d62;           /* legado en degradación; evitar en piezas nuevas */

    /* ---- Forma / elevación ---- */
    --radius: 8px;
    --radius-lg: 16px;
    --radius-pill: 999px;
    --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.06);
    --shadow-md: 0 4px 16px rgba(16, 24, 40, 0.08);
    --shadow-lg: 0 12px 32px rgba(16, 24, 40, 0.12);
}

/* ---- Base ---- */
* { box-sizing: border-box; }
body {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
}
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.25; }
a { text-decoration: none; }
.section-padding { padding: 70px 0; }
.bg-section-light { background: var(--bg-light); }

/* ==============================
   HOMEPAGE
   ============================== */
.home-landing {
    background: var(--bg-light) url('/img/home/hero-bg.png') no-repeat right center / contain;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.home-content { text-align: center; padding: 40px 0; position: relative; z-index: 2; max-width: 750px; margin: 0 auto; }
.home-logo-img { width: 460px; max-width: 90%; height: auto; margin-bottom: 28px; }
.home-heading { font-size: 30px; font-weight: 600; color: #000; line-height: 45px; margin-bottom: 16px; }
.home-subtitle { font-size: 22px; font-weight: 300; color: #000; margin-bottom: 32px; }
.home-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.home-btn {
    display: inline-flex; align-items: center;
    padding: 16px 36px; border-radius: var(--radius);
    color: white; font-weight: 500; font-size: 20px;
    transition: all 0.3s; text-decoration: none;
}
.home-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); color: white; }
.home-logo-img, .home-heading, .home-subtitle, .home-btn { opacity: 1 !important; visibility: visible !important; }
.home-btn-abogado { background: rgb(31, 41, 55); }
.home-btn-abogado:hover { background: rgb(41, 51, 65); }
.home-btn-receptor { background: rgb(35, 33, 165); }
.home-btn-receptor:hover { background: rgb(45, 43, 175); }
.home-btn-directorio { background: rgb(140, 61, 98); }
.home-btn-directorio:hover { background: rgb(160, 71, 108); }

/* ==============================
   NAVBAR - White bg, dark text
   ============================== */
.nav-main {
    background: #ffffff; padding: 8px 0;
    position: sticky; top: 0; z-index: 1030;
    border-bottom: 1px solid #e5e7eb;
}
.nav-logo-img { height: 40px; }
.navbar-brand { display: inline-flex; align-items: center; }
.nav-main .nav-link { color: rgb(31, 41, 55) !important; font-weight: 500; font-size: 17px; padding: 8px 12px !important; }
.nav-main .nav-link:hover, .nav-main .nav-link.active { color: var(--primary) !important; }
.nav-main .dropdown-menu { background: white; border: 1px solid #e5e7eb; border-radius: var(--radius); padding: 6px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.nav-main .dropdown-item { color: rgb(31, 41, 55); border-radius: 6px; padding: 8px 14px; font-size: 15px; }
.nav-main .dropdown-item:hover { background: var(--bg-light); color: var(--primary); }
.nav-main .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(31,41,55,0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.btn-cta-green { background: var(--primary); color: white !important; border: none; border-radius: var(--radius); font-weight: 600; font-size: 14px; padding: 8px 18px; }
.btn-cta-green:hover { background: var(--primary-dark); color: white !important; }
.btn-cta-whatsapp { background: var(--green); color: white !important; border: none; border-radius: var(--radius); font-weight: 600; font-size: 14px; padding: 8px 18px; }
.btn-cta-whatsapp:hover { background: var(--green-dark); color: white; }

/* ==============================
   HERO SECTIONS
   ============================== */
.hero-banner { background: var(--bg-light); padding: 50px 0 40px; text-align: center; }
.hero-banner-title { font-size: 52px; font-weight: 700; color: var(--primary); line-height: 1.15; }
.hero-content { background: var(--bg-white); padding: 40px 0 30px; }
.hero-subtitle-inner { font-size: 1.05rem; color: var(--dark); line-height: 1.7; }
.hero-detail { font-size: 0.95rem; color: var(--gray-500); margin-top: 8px; }
.hero-tags-bar { background: var(--bg-white); padding: 20px 0 30px; }
.tag-badge { display: inline-flex; align-items: center; padding: 8px 18px; border: 1px solid #e5e7eb; border-radius: var(--radius); font-size: 0.9rem; color: var(--dark); font-weight: 500; background: white; }
.tag-badge i { color: var(--primary); }
.page-hero { background: var(--bg-white); padding: 40px 0 30px; border-bottom: 1px solid #e5e7eb; }
.page-hero-sm { padding: 40px 0 30px; }
.hero-title-inner { font-size: 40px; font-weight: 700; color: var(--primary); line-height: 1.2; }
.hero-title-inner .text-highlight { color: var(--primary); }

/* Buttons */
.btn-primary-nl { background: var(--primary-light); color: white; border: none; border-radius: var(--radius); font-weight: 600; padding: 12px 28px; transition: all 0.3s; }
.btn-primary-nl:hover { background: var(--primary); color: white; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(35,33,165,0.3); }
.btn-outline-nl { background: transparent; color: var(--primary); border: 2px solid var(--primary); border-radius: var(--radius); font-weight: 600; padding: 10px 28px; transition: all 0.3s; }
.btn-outline-nl:hover { background: var(--primary); color: white; }

/* ==============================
   STATS BAR
   ============================== */
.stats-bar { background: var(--bg-white); padding: 30px 0; }
.stats-bar .container { text-align: center; }
.stat-label-top { text-align: center; color: var(--gray-500); font-size: 0.9rem; margin-bottom: 16px; }
.stat-label-badge { text-align: center; margin-bottom: 20px; color: var(--primary); font-size: 0.95rem; font-weight: 500; background: var(--bg-light); display: inline-block; padding: 8px 24px; border-radius: 50px; }
.stat-box { border: 2px solid var(--primary-light); border-radius: var(--radius); padding: 18px 12px; text-align: center; background: white; transition: all 0.3s; }
.stat-box:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-2px); }
.stat-box .stat-value { font-size: 40px; font-weight: 800; color: var(--primary-light); display: block; }
.stat-box .stat-desc { font-size: 0.8rem; color: var(--gray-500); display: flex; align-items: center; justify-content: center; gap: 4px; margin-top: 4px; }
.stat-box .stat-desc i { color: var(--primary-light); }

/* ==============================
   SECTION HEADINGS
   ============================== */
.section-heading { text-align: center; margin-bottom: 40px; }
.section-heading h2 { font-size: 40px; font-weight: 700; color: var(--primary); position: relative; display: inline-block; }
.section-heading h2::after { content: ''; display: block; width: 50%; height: 3px; background: var(--primary); margin: 6px auto 0; border-radius: 2px; }
.section-heading p { color: var(--gray-500); font-size: 0.95rem; margin-top: 10px; }

/* ==============================
   STEP CARDS - NO opacity animation
   ============================== */
.step-card { background: white; border: 1px solid #e5e7eb; border-radius: var(--radius); padding: 28px 22px; text-align: center; height: 100%; transition: all 0.3s; }
.step-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-3px); }
.step-number { width: 34px; height: 34px; background: var(--primary); color: white; border-radius: 50%; font-weight: 700; font-size: 0.85rem; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.step-img { width: 100%; border-radius: var(--radius); margin-bottom: 14px; }
.step-card h5 { font-size: 1rem; margin-bottom: 8px; font-weight: 700; }
.step-card p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 0; }

/* ==============================
   BENEFIT CARDS - NO opacity animation
   ============================== */
.benefit-card { background: white; border: 1px solid #e5e7eb; border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; height: 100%; transition: all 0.3s; }
.benefit-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-2px); }
.benefit-icon { width: 48px; height: 48px; min-width: 48px; background: rgba(35,33,165,0.08); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.benefit-icon i { font-size: 1.3rem; color: var(--primary); }
.benefit-img { width: 100px; height: 100px; min-width: 100px; object-fit: contain; }
.benefit-card h5 { font-size: 1.05rem; margin-bottom: 6px; font-weight: 700; }
.benefit-card p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 0; }

/* ==============================
   FEATURE CARDS - NO opacity animation
   ============================== */
.feature-card { background: white; border: 1px solid #e5e7eb; border-radius: var(--radius); padding: 24px; height: 100%; transition: all 0.3s; }
.feature-card:hover { border-color: var(--primary-light); box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-3px); }
.feature-icon { width: 48px; height: 48px; background: rgba(35,33,165,0.08); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.feature-icon i { font-size: 1.3rem; color: var(--primary); }
.feature-card h5, .feature-card h6 { font-size: 0.95rem; margin-bottom: 6px; }
.feature-card p { color: var(--gray-500); font-size: 0.85rem; margin-bottom: 0; }

/* ==============================
   PRICING - Dark bg section (original)
   ============================== */
.pricing-dark { background: var(--primary); padding: 70px 0; }
.pricing-dark .section-heading h2 { color: white; }
.pricing-dark .section-heading h2::after { background: white; }
.pricing-dark .section-heading p { color: rgba(255,255,255,0.7); }
.pricing-card { background: white; border: 2px solid #e5e7eb; border-radius: var(--radius); padding: 30px; height: 100%; display: flex; flex-direction: column; transition: all 0.3s; position: relative; }
.pricing-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-3px); }
.pricing-featured { border-color: var(--primary); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); font-size: 0.78rem; font-weight: 600; padding: 5px 18px; border-radius: var(--radius); white-space: nowrap; }
.pricing-badge-green { background: var(--green); color: white; }
.pricing-badge-gray { background: #e5e7eb; color: var(--gray-600); }
.pricing-header { margin-bottom: 20px; }
.pricing-header h4 { font-size: 1.2rem; margin-bottom: 10px; font-weight: 700; }
.price-amount { font-size: 2rem; font-weight: 800; color: var(--primary); }
.price-period { display: block; color: var(--gray-500); font-size: 0.8rem; }
.pricing-features { list-style: none; padding: 0; margin-bottom: 20px; flex: 1; }
.pricing-features li { padding: 6px 0; font-size: 0.85rem; color: var(--gray-600); display: flex; align-items: flex-start; gap: 8px; }
.pricing-features li i { color: var(--primary-light); margin-top: 3px; flex-shrink: 0; }

/* ==============================
   TESTIMONIAL CAROUSEL
   ============================== */
.testimonial-card { background: white; border: 1px solid #e5e7eb; border-radius: var(--radius); padding: 24px; height: 100%; }
.testimonial-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.testimonial-text { font-style: italic; color: var(--gray-600); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 50px; height: 50px; background: var(--bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.author-avatar i { font-size: 1.5rem; color: var(--gray-400); }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.testimonial-author strong { display: block; font-size: 0.85rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--primary); }
/* Carousel controls */
.carousel-control-prev, .carousel-control-next { width: 40px; height: 40px; background: var(--primary); border-radius: 50%; top: 50%; transform: translateY(-50%); opacity: 1; }
.carousel-control-prev { left: -20px; }
.carousel-control-next { right: -20px; }
.carousel-indicators { bottom: -40px; }
.carousel-indicators [data-bs-target] { background-color: var(--primary); width: 10px; height: 10px; border-radius: 50%; }

/* ==============================
   ACCORDION / FAQ
   ============================== */
.accordion-item { border: 1px solid #e5e7eb; border-radius: var(--radius) !important; margin-bottom: 10px; overflow: hidden; }
.accordion-button { font-weight: 600; font-size: 0.9rem; color: var(--dark); padding: 16px 20px; }
.accordion-button:not(.collapsed) { background: rgba(35,33,165,0.04); color: var(--primary); box-shadow: none; }
.accordion-button:focus { box-shadow: none; }
.accordion-body { color: var(--gray-600); font-size: 0.85rem; line-height: 1.7; padding: 0 20px 16px; }

/* ==============================
   CONTACT SECTION - Like original with map
   ============================== */
.contact-section { padding: 70px 0; }
.contact-info-box { background: var(--bg-light); border: 1px solid #e5e7eb; border-radius: var(--radius); padding: 30px; }
.contact-info-box h5 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.contact-info-list { list-style: none; padding: 0; }
.contact-info-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 0.9rem; color: var(--dark); }
.contact-info-list li img { width: 28px; height: 28px; }
.contact-info-list li i { font-size: 1.2rem; color: var(--primary); width: 28px; text-align: center; }
.contact-map { border-radius: var(--radius); overflow: hidden; margin-top: 20px; }
.contact-map iframe { border: 0; width: 100%; height: 250px; }
.contact-form-card { background: white; border: 1px solid #e5e7eb; border-radius: var(--radius); padding: 30px; }
.contact-form-card .form-control, .contact-form-card .form-select { border: 1px solid var(--gray-300); border-radius: var(--radius); padding: 10px 14px; font-size: 0.85rem; }
.contact-form-card .form-control:focus, .contact-form-card .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(35,33,165,0.1); }
.form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }
.btn-submit { background: var(--primary); color: white; border: none; border-radius: var(--radius); font-weight: 600; padding: 10px 24px; }
.btn-submit:hover { background: var(--primary-dark); color: white; }

/* ==============================
   BLOG CARDS - NO opacity animation
   ============================== */
.blog-card { background: white; border: 1px solid #e5e7eb; border-radius: var(--radius); overflow: hidden; height: 100%; transition: all 0.3s; }
.blog-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-3px); }
.blog-card-img { height: 140px; background: var(--primary); display: flex; align-items: center; justify-content: center; }
.blog-card-img i { font-size: 2.5rem; color: rgba(255,255,255,0.25); }
.blog-card-body { padding: 20px; }
.blog-date { font-size: 0.75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card h5 { font-size: 0.95rem; margin: 6px 0 8px; }
.blog-card p { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 10px; }
.blog-link { color: var(--primary); font-weight: 600; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.blog-link:hover { gap: 10px; color: var(--primary-dark); }

/* ==============================
   ABOUT / VALUE / TEAM CARDS - NO opacity animation
   ============================== */
.about-card { background: white; border: 1px solid #e5e7eb; border-radius: var(--radius); padding: 30px; height: 100%; transition: all 0.3s; }
.about-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.about-card-icon { width: 48px; height: 48px; background: rgba(35,33,165,0.08); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.about-card-icon i { font-size: 1.4rem; color: var(--primary); }
.about-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.about-card p { color: var(--gray-500); margin-bottom: 0; font-size: 0.9rem; }

.value-card { background: white; border: 1px solid #e5e7eb; border-radius: var(--radius); padding: 30px 22px; height: 100%; transition: all 0.3s; }
.value-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-3px); }
.value-icon { width: 56px; height: 56px; background: rgba(35,33,165,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.value-icon i { font-size: 1.4rem; color: var(--primary); }
.value-card p { color: var(--gray-500); font-size: 0.85rem; margin-bottom: 0; }

.team-card { background: white; border: 1px solid #e5e7eb; border-radius: var(--radius); padding: 26px 18px; transition: all 0.3s; }
.team-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-3px); }
.team-avatar { width: 70px; height: 70px; background: var(--bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; overflow: hidden; }
.team-avatar i { font-size: 2rem; color: var(--gray-400); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-card h5 { font-size: 0.95rem; margin-bottom: 2px; }
.team-role { font-size: 0.8rem; color: var(--primary); font-weight: 500; }

/* SEARCH / DIRECTORY */
.search-card { background: white; border: 1px solid #e5e7eb; border-radius: var(--radius); padding: 30px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.search-card .form-select, .search-card .form-control { border: 1px solid var(--gray-300); border-radius: var(--radius); }
.empty-state { padding: 50px 20px; background: white; border-radius: var(--radius); border: 2px dashed var(--gray-300); }

/* CTA */
.cta-section { background: var(--primary); padding: 60px 0; }

/* ==============================
   FOOTER - Light bg
   ============================== */
/* Estilos del footer viven en includes/footer.php (footer azul 2026).
   No definir aquí colores de .footer-section: generan conflictos de especificidad. */
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { color: var(--gray-600); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { color: var(--gray-600); font-size: 0.8rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer-contact li i { color: var(--primary); }
.social-links { display: flex; gap: 10px; margin-bottom: 16px; }
.social-links a { width: 36px; height: 36px; background: rgba(35,33,165,0.08); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--gray-600); text-decoration: none; transition: all 0.2s; font-size: 1rem; }
.social-links a:hover { background: var(--primary); color: white; }
.footer-divider { border-color: #e5e7eb; margin: 24px 0 16px; }
.footer-bottom { color: var(--gray-500); font-size: 0.78rem; }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 991px) {
    .home-logo-img { width: 320px; }
    .home-heading { font-size: 24px; line-height: 36px; }
    .home-subtitle { font-size: 18px; }
    .hero-banner-title { font-size: 36px; }
    .hero-title-inner { font-size: 28px; }
    .section-heading h2 { font-size: 30px; }
    .stat-box .stat-value { font-size: 28px; }
    .carousel-control-prev { left: 0; }
    .carousel-control-next { right: 0; }
}
@media (max-width: 767px) {
    .home-logo-img { width: 260px; }
    .home-heading { font-size: 20px; line-height: 30px; }
    .home-subtitle { font-size: 16px; }
    .home-btn { padding: 14px 24px; font-size: 16px; width: 100%; justify-content: center; }
    .home-buttons { flex-direction: column; align-items: center; }
    .hero-banner-title { font-size: 28px; }
    .section-padding { padding: 50px 0; }
    .section-heading h2 { font-size: 24px; }
    .stat-box .stat-value { font-size: 24px; }
    .benefit-img { width: 60px; height: 60px; min-width: 60px; }
}

/* ==============================
   ANIMACIONES GLOBALES (entrada + flotacion sutil)
   Mismas curvas que el home para consistencia.
   ============================== */
@keyframes nlUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes nlFloat { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-8px,0); } }
