/* ============================================================
   BIOAUREA — Editorial Skin
   Adapta la landing pública a la paleta cream/sepia/forest
   usada por los productos (Observatorio, EUDR, Suite HC, etc.).
   Carga DESPUÉS de todos los CSS para sobrescribir tokens
   y colores hardcoded del tema dark-green legacy.
   ============================================================ */

:root {
    --bg-dark:        #f3eada;   /* cream paper */
    --bg-card:        #ebdfc4;   /* darker cream */
    --green-primary:  #7a4a26;   /* sepia brown — antes neón verde */
    --green-secondary:#5a3318;   /* dark brown — hover */
    --green-dark:     #d8c890;   /* warm beige — antes verde oscuro */
    --text-primary:   #2e2014;   /* dark ink */
    --text-secondary: #806c50;   /* mid sepia */
    --accent:         #7a4a26;
}

html, body {
    background: #f3eada;
    color: #2e2014;
}

/* ============================================================
   HERO TITLE & TEXT — tipografía editorial específica
   Solo afecta el subtítulo y la descripción del Hero del Home.
   El resto de la página conserva su tipografía original.
   ============================================================ */
.hero .subtitle {
    font-family: 'Fraunces', 'Newsreader', Georgia, serif !important;
    font-feature-settings: 'ss01', 'liga', 'calt';
    font-size: 2.4em !important;
    font-weight: 500 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.015em !important;
    max-width: 720px !important;
    margin-bottom: 24px !important;
    /* Color cálido pintado a mano — no negro duro */
    background: linear-gradient(135deg, #6a4326 0%, #8a5a32 50%, #5a3a1e 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: #6a4326 !important; /* fallback */
    text-shadow: none !important;
}
.hero .description {
    font-family: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 1.02em !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
    letter-spacing: 0.005em !important;
    max-width: 600px !important;
    color: #5a4630 !important;
}

/* =================== Scrollbar =================== */
::-webkit-scrollbar-thumb { background: #7a4a26; }
::-webkit-scrollbar-thumb:hover { background: #5a3318; }
* { scrollbar-color: #7a4a26 transparent; }

/* =================== Nav =================== */
/* v2.5: Barra fija con transparencia oscura (sepia profundo translúcido)
   + logo blanco. Más elegante y discreta. Posición fija viene de layout.css. */
.nav-container {
    background: rgba(30, 22, 14, 0.55);  /* sepia oscuro translúcido */
    backdrop-filter: blur(16px) saturate(130%);
    -webkit-backdrop-filter: blur(16px) saturate(130%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 4px 18px -8px rgba(0, 0, 0, 0.35);
    /* position: fixed viene de layout.css base */
}
/* Sin pincelada de transición */
.nav-container::after { content: none; }
.nav-container::before { content: none; }
.nav-container > * { position: relative; z-index: 1; }
/* Links en cream brillante sobre fondo oscuro */
.nav-links a { color: rgba(251, 248, 242, 0.95); font-weight: 600; }
.nav-links a:hover {
    background: rgba(251, 248, 242, 0.12);
    color: #ffffff;
    transform: none;
}
.nav-hamburger span { background: #fbf8f2; }

/* Logo BLANCO en la nav — invert + brightness para hacerlo blanco puro */
.nav-container .logo-container img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

/* "Otros Productos" link override — cream sobre fondo oscuro */
.nav-links a[href="#roadmap"] { color: #fbf8f2 !important; font-weight: 700; }

.btn-register {
    background: #2d5530;
    color: #f3eada;
    box-shadow: 0 4px 14px rgba(28, 56, 30, 0.22);
}
.btn-register:hover {
    background: #1e3d22;
    box-shadow: 0 8px 22px rgba(28, 56, 30, 0.32);
}

/* =================== Hero =================== */
.hero {
    background: linear-gradient(160deg, #f3eada 0%, #ebdfc4 30%, #d8c890 60%, #ebdfc4 85%, #f3eada 100%);
}
.hero::before {
    background:
        radial-gradient(ellipse 800px 600px at 15% 50%, rgba(255,255,255,0.40), transparent),
        radial-gradient(ellipse 600px 500px at 85% 30%, rgba(122,74,38,0.10), transparent),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(82,56,28,0.06)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}
.logo-hero { filter: drop-shadow(0 16px 40px rgba(82, 56, 28, 0.22)); animation: none; }
.hero .subtitle {
    color: #2e2014;
    text-shadow: none;
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 500;
}
.hero .description { color: #5a4630; }

.hero .btn-primary {
    background: #2d5530;
    color: #f3eada;
    box-shadow: 0 8px 22px rgba(28, 56, 30, 0.28);
}
.hero .btn-primary:hover {
    background: #1e3d22;
    color: #f3eada;
    box-shadow: 0 12px 32px rgba(28, 56, 30, 0.38);
}
.hero .btn-secondary {
    border-color: rgba(122, 74, 38, 0.55);
    color: #5a3318;
    background: transparent;
}
.hero .btn-secondary:hover {
    background: rgba(122, 74, 38, 0.10);
    border-color: #7a4a26;
    color: #5a3318;
}

/* Hero stats panel — vidrio cream */
.stats-grid {
    background: rgba(251, 248, 242, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(82, 56, 28, 0.18);
}
.stat-card { border-bottom: 1px solid rgba(82, 56, 28, 0.10); }
.stat-card:hover { background: rgba(122, 74, 38, 0.05); }
.stat-icon { stroke: #7a4a26; opacity: 0.85; }
.stat-number {
    color: #2e2014;
    text-shadow: none;
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 600;
}
.stat-label { color: #806c50; }
.stat-footnote { color: #aa9670; }

/* =================== Botones globales ===================
   Primary  → verde bosque #2d5530 (productos accent_l)
   Secondary → outline café (acento editorial)
*/
.btn-primary {
    background: #2d5530;
    color: #f3eada;
    box-shadow: 0 6px 16px rgba(28, 56, 30, 0.22);
}
.btn-primary:hover {
    background: #1e3d22;
    color: #f3eada;
    box-shadow: 0 10px 28px rgba(28, 56, 30, 0.32);
}
.btn-secondary {
    background: transparent;
    border: 2px solid rgba(122, 74, 38, 0.55);
    color: #7a4a26;
}
.btn-secondary:hover {
    background: rgba(122, 74, 38, 0.10);
    border-color: #7a4a26;
    color: #5a3318;
}

/* =================== Section titles =================== */
/* Tono cálido pintado, no negro duro */
.section-title {
    font-family: 'Newsreader', Georgia, serif;
    background: linear-gradient(135deg, #6a4326 0%, #9a6a3e 50%, #5a3a1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.section-subtitle { color: #806c50; }

/* v2.7: subtítulo de la sección Productos más grande y editorial */
.productos-section .section-subtitle {
    font-size: 1.15em;
    color: #5a4630;
    font-weight: 400;
    line-height: 1.45;
    max-width: 720px;
    letter-spacing: 0.005em;
}

/* =================== Features section =================== */
.features-section { background: #f3eada; }
.feature-card {
    background: rgba(251, 248, 242, 0.55);
    border: 1px solid rgba(82, 56, 28, 0.12);
}
.feature-card:hover {
    border-color: rgba(122, 74, 38, 0.30);
    background: rgba(122, 74, 38, 0.05);
    transform: translateY(-2px);
}
.feature-card.expanded {
    border-color: rgba(122, 74, 38, 0.40);
    background: rgba(122, 74, 38, 0.06);
}
.feature-icon { stroke: #7a4a26; }
.feature-title { color: #2e2014; }
.feature-expand-icon { stroke: #aa9670; }
.feature-card.expanded .feature-expand-icon { stroke: #7a4a26; }
.feature-description {
    color: #5a4630;
    border-top: 1px solid rgba(82, 56, 28, 0.10);
}

/* =================== Productos / Roadmap =================== */
.productos-section,
.roadmap-section {
    background: linear-gradient(180deg, #f3eada 0%, #ebdfc4 40%, #ebdfc4 60%, #f3eada 100%);
}
.roadmap-section::before {
    background:
        radial-gradient(ellipse 600px 400px at 20% 50%, rgba(122,74,38,0.05), transparent),
        radial-gradient(ellipse 600px 400px at 80% 30%, rgba(45,85,48,0.04), transparent);
}
.roadmap-carousel-wrapper::before { background: linear-gradient(90deg, #ebdfc4 0%, transparent 100%) !important; }
.roadmap-carousel-wrapper::after  { background: linear-gradient(-90deg, #ebdfc4 0%, transparent 100%) !important; }

.roadmap-card {
    background: rgba(251, 248, 242, 0.70);
    border: 1px solid rgba(82, 56, 28, 0.14);
}
.roadmap-card:hover {
    border-color: rgba(122, 74, 38, 0.32);
    background: rgba(122, 74, 38, 0.05);
    box-shadow: 0 12px 36px rgba(82, 56, 28, 0.14);
}
.rm-icon-badge svg { stroke: #7a4a26 !important; }
.roadmap-title { color: #2e2014; }
.rm-card-number { color: rgba(122, 74, 38, 0.18); }

/* Sectores chips */
.sector-ambiente, .sector-certificacion, .sector-carbono,
.sector-gobierno, .sector-conservacion, .sector-agro, .sector-tech {
    background: rgba(122, 74, 38, 0.06);
    color: #806c50;
    border-color: rgba(82, 56, 28, 0.18);
}

/* Botón "Ver más" del roadmap */
.roadmap-card .btn-roadmap-more,
.roadmap-card a[class*="btn"] {
    background: rgba(122, 74, 38, 0.10);
    border-color: rgba(122, 74, 38, 0.30);
    color: #7a4a26;
}

/* =================== Newsletter =================== */
.newsletter-section {
    background: linear-gradient(180deg, #f3eada 0%, #ebdfc4 40%, #ebdfc4 60%, #f3eada 100%);
}
.newsletter-input {
    border: 2px solid #7a4a26;
    background: rgba(251, 248, 242, 0.85);
    color: #2e2014;
}
.newsletter-input::placeholder { color: #aa9670; }
.newsletter-input:focus {
    box-shadow: 0 0 18px rgba(82, 56, 28, 0.20);
    background: #fbf8f2;
}

/* =================== Footer =================== */
.footer {
    background: #1f1812;
    color: #ebdfc4;
    border-top: 1px solid rgba(122, 74, 38, 0.40);
}
.footer-link { color: #d8c890; }
.footer-link:hover { color: #f3eada; }
.footer p { color: #aa9670 !important; }

/* =================== Loading / spinner =================== */
.loading p { color: #7a4a26 !important; }
.spinner { border-top-color: #7a4a26 !important; }

/* =================== Mobile auth button =================== */
@media (max-width: 768px) {
    .nav-links a.mobile-auth-btn {
        background: #2d5530;
        color: #f3eada;
    }
}

/* =================== Onboarding overlay =================== */
.onboarding-card { background: #fbf8f2; color: #2e2014; border: 1px solid rgba(82, 56, 28, 0.22); }
.onboarding-card h3 { color: #2e2014; font-family: 'Newsreader', Georgia, serif; }
.onboarding-card p { color: #5a4630; }
.btn-onboarding-dismiss {
    background: #2d5530;
    color: #f3eada;
    border: none;
}
.btn-onboarding-dismiss:hover { background: #1e3d22; }

/* =================== Map sidebars =================== */
.sidebar-left, .sidebar-right {
    background: rgba(251, 248, 242, 0.95);
    border: 1px solid rgba(82, 56, 28, 0.15);
    color: #2e2014;
}
.sidebar-title { color: #2e2014; font-family: 'Newsreader', Georgia, serif; }
.search-box, .date-input {
    background: #fbf8f2;
    border: 1px solid rgba(82, 56, 28, 0.20);
    color: #2e2014;
}
.search-box::placeholder { color: #aa9670; }
.btn-search, .btn-report, .btn-premium-sidebar {
    background: #2d5530;
    color: #f3eada;
    border: none;
}
.btn-search:hover, .btn-report:hover, .btn-premium-sidebar:hover {
    background: #1e3d22;
}
.btn-report:disabled {
    background: rgba(45, 85, 48, 0.20);
    color: #aa9670;
    cursor: not-allowed;
}
.searches-counter { color: #806c50; }

/* Mobile map toggles */
.mobile-toggle-btn {
    background: #2d5530;
    color: #f3eada;
    border: none;
}

/* =================== Language selector =================== */
.lang-btn {
    background: rgba(243, 234, 218, 0.16);
    border: 1px solid rgba(243, 234, 218, 0.30);
    color: #f3eada;
}
.lang-btn:hover { background: rgba(243, 234, 218, 0.26); }
.lang-dropdown {
    background: #fbf8f2;
    border: 1px solid rgba(82, 56, 28, 0.20);
}
.lang-option { color: #2e2014; }
.lang-option:hover { background: rgba(122, 74, 38, 0.08); }
.lang-option.active { color: #7a4a26; }

/* ============================================================
   HOVER OSCUROS — contraste sutil sobre paleta cream
   ============================================================ */

/* Nav — sombra sutil al hover sobre toda la barra */
.nav-links a {
    transition: background 0.2s, color 0.2s;
}
.nav-links a:hover {
    background: rgba(243, 234, 218, 0.16) !important;
    color: #fbf8f2 !important;
    transform: none;
}

/* Stats panel — bloques con vidrio sutilmente más oscuro al hover */
.stats-grid {
    background: rgba(46, 32, 20, 0.06) !important;
    border: 1px solid rgba(46, 32, 20, 0.12) !important;
}
.stat-card {
    transition: background 0.25s ease;
    border-bottom: 1px solid rgba(46, 32, 20, 0.10);
}
.stat-card:hover {
    background: rgba(46, 32, 20, 0.08) !important;
}

/* Features cards — wash oscuro al hover */
.feature-card {
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.feature-card:hover {
    background: rgba(46, 32, 20, 0.06) !important;
    border-color: rgba(46, 32, 20, 0.22) !important;
}
.feature-card.expanded {
    background: rgba(46, 32, 20, 0.08) !important;
    border-color: rgba(46, 32, 20, 0.28) !important;
}

/* Roadmap cards — wash oscuro al hover */
.roadmap-card:hover {
    background: rgba(46, 32, 20, 0.06) !important;
    border-color: rgba(46, 32, 20, 0.25) !important;
    box-shadow: 0 12px 32px rgba(46, 32, 20, 0.14);
}

/* Footer links — hover con barra brown sutil */
.footer-link {
    padding: 4px 10px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
.footer-link:hover {
    background: rgba(243, 234, 218, 0.10);
    color: #f3eada;
    text-decoration: none;
}

/* ============================================================
   LOGIN / REGISTER MODAL
   ============================================================ */
.modal { background: rgba(46, 32, 20, 0.55); }
.modal-content {
    background: #fbf8f2 !important;
    border: 1px solid rgba(82, 56, 28, 0.20) !important;
    box-shadow: 0 24px 60px rgba(46, 32, 20, 0.30) !important;
    color: #2e2014;
}
.modal-header { border-bottom: 1px solid rgba(82, 56, 28, 0.15) !important; }
.modal-title {
    color: #2e2014 !important;
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 600;
}
.modal-close { stroke: #806c50 !important; }
.modal-close:hover { stroke: #2d5530 !important; }

.form-label { color: #5a4630 !important; }
.form-input {
    background: #f3eada !important;
    border: 1px solid rgba(82, 56, 28, 0.22) !important;
    color: #2e2014 !important;
}
.form-input::placeholder { color: #aa9670; }
.form-input:focus {
    border-color: #2d5530 !important;
    box-shadow: 0 0 0 3px rgba(45, 85, 48, 0.12) !important;
    background: #fbf8f2 !important;
}

/* Auth tabs */
.auth-tabs {
    border: 1px solid rgba(82, 56, 28, 0.22) !important;
    background: rgba(46, 32, 20, 0.04);
}
.auth-tab { color: #806c50 !important; }
.auth-tab.active {
    background: rgba(45, 85, 48, 0.12) !important;
    color: #2d5530 !important;
}
.auth-tab:hover:not(.active) {
    background: rgba(46, 32, 20, 0.06) !important;
    color: #2e2014 !important;
}

/* Auth divider */
.auth-divider::before, .auth-divider::after { background: rgba(82, 56, 28, 0.18) !important; }
.auth-divider span { color: #806c50 !important; }

/* Google button */
.btn-google {
    background: #ffffff !important;
    border: 1px solid rgba(82, 56, 28, 0.22) !important;
    color: #2e2014 !important;
    box-shadow: 0 1px 2px rgba(46, 32, 20, 0.06);
}
.btn-google:hover {
    background: #fbf8f2 !important;
    border-color: rgba(82, 56, 28, 0.35) !important;
    box-shadow: 0 4px 14px rgba(46, 32, 20, 0.12) !important;
    transform: translateY(-1px);
}

/* Crear Cuenta button (btn-primary inside modal) */
.modal .btn-primary {
    background: #2d5530 !important;
    color: #f3eada !important;
}

/* ============================================================
   COORDINATES SEARCH MODAL
   ============================================================ */
.coord-modal-content {
    background: #fbf8f2 !important;
    border: 1px solid rgba(82, 56, 28, 0.22) !important;
    box-shadow: 0 24px 60px rgba(46, 32, 20, 0.28) !important;
}
.coord-modal-header {
    background: linear-gradient(135deg, #f3eada 0%, #fbf8f2 60%) !important;
    border-bottom: 1px solid rgba(82, 56, 28, 0.15) !important;
}
.coord-modal-header::before {
    background: linear-gradient(90deg, #2d5530, #7a4a26, #d8c890, #2d5530) !important;
}
.coord-modal-icon {
    background: rgba(45, 85, 48, 0.12) !important;
    stroke: #2d5530 !important;
}
.coord-modal-title {
    background: linear-gradient(135deg, #2e2014 0%, #7a4a26 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    font-family: 'Newsreader', Georgia, serif;
}
.coord-modal-close {
    background: rgba(46, 32, 20, 0.05) !important;
    border: 1px solid rgba(82, 56, 28, 0.15) !important;
    stroke: #806c50 !important;
}
.coord-modal-close:hover {
    background: rgba(139, 53, 37, 0.10) !important;
    border-color: rgba(139, 53, 37, 0.25) !important;
    stroke: #8b3525 !important;
}

.coord-range-box {
    background: rgba(46, 32, 20, 0.04) !important;
    border: 1px solid rgba(82, 56, 28, 0.14) !important;
}
.coord-range-label, .coord-range-key, .coord-section-label, .coord-field-label {
    color: #806c50 !important;
}
.coord-range-val { color: #2e2014 !important; }

.coord-field-input {
    background: #f3eada !important;
    border: 1px solid rgba(82, 56, 28, 0.22) !important;
    color: #2e2014 !important;
}
.coord-field-input:focus {
    border-color: #2d5530 !important;
    box-shadow: 0 0 0 3px rgba(45, 85, 48, 0.12) !important;
    background: #fbf8f2 !important;
}
.coord-field-input::placeholder { color: #aa9670 !important; }

.coord-error {
    background: rgba(139, 53, 37, 0.07) !important;
    border: 1px solid rgba(139, 53, 37, 0.22) !important;
    color: #8b3525 !important;
}

.coord-submit-btn {
    background: #2d5530 !important;
    border: 1px solid #2d5530 !important;
    color: #f3eada !important;
    stroke: #f3eada !important;
}
.coord-submit-btn:hover {
    background: #1e3d22 !important;
    border-color: #1e3d22 !important;
    box-shadow: 0 6px 18px rgba(28, 56, 30, 0.30) !important;
}

.coord-polygon-toggle {
    border: 1px dashed rgba(122, 74, 38, 0.35) !important;
    color: #7a4a26 !important;
}
.coord-polygon-toggle:hover {
    background: rgba(122, 74, 38, 0.08) !important;
    border-color: rgba(122, 74, 38, 0.50) !important;
    color: #5a3318 !important;
}

/* ============================================================
   ONBOARDING CARD (en mapa)
   ============================================================ */
.map-onboarding-overlay { background: rgba(46, 32, 20, 0.30) !important; }
.onboarding-card {
    background: #fbf8f2 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(82, 56, 28, 0.22) !important;
    box-shadow: 0 16px 48px rgba(46, 32, 20, 0.30) !important;
}
.onboarding-card svg { stroke: #2d5530 !important; }
.onboarding-card h3 {
    color: #2e2014 !important;
    font-family: 'Newsreader', Georgia, serif !important;
    font-weight: 600 !important;
}
.onboarding-card p { color: #5a4630 !important; }

/* ============================================================
   SIDEBARS DEL MAPA — vidrio cream
   ============================================================ */
.sidebar-left, .sidebar-right {
    background: rgba(251, 248, 242, 0.92) !important;
    backdrop-filter: blur(14px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(120%) !important;
    border: 1px solid rgba(82, 56, 28, 0.18) !important;
    box-shadow: 0 8px 28px rgba(46, 32, 20, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}
.sidebar-title {
    color: #2e2014 !important;
    font-family: 'Newsreader', Georgia, serif !important;
    font-weight: 600 !important;
}

/* Cerrar X derecha */
.sidebar-right-close {
    background: rgba(46, 32, 20, 0.05) !important;
    border: 1px solid rgba(82, 56, 28, 0.15) !important;
    color: #806c50 !important;
}
.sidebar-right-close:hover {
    background: rgba(139, 53, 37, 0.10) !important;
    border-color: rgba(139, 53, 37, 0.25) !important;
    color: #8b3525 !important;
}

/* Search suggestions */
.search-suggestions {
    background: rgba(251, 248, 242, 0.97) !important;
    border: 1px solid rgba(82, 56, 28, 0.20) !important;
    border-top: none !important;
}
.suggestion-item {
    color: #2e2014 !important;
    border-bottom: 1px solid rgba(82, 56, 28, 0.10) !important;
}
.suggestion-item:hover {
    background: rgba(46, 32, 20, 0.06) !important;
    color: #2d5530 !important;
}
.suggestion-location { color: #806c50 !important; }
.suggestion-item:hover .suggestion-location { color: #5a4630 !important; }

/* Search result */
.search-result {
    background: rgba(46, 32, 20, 0.05) !important;
    color: #2d5530 !important;
}

/* Date label */
.date-label { color: #2e2014 !important; font-weight: 600 !important; }

/* Searches counter */
.sidebar-footer-info {
    border-top: 1px solid rgba(82, 56, 28, 0.15) !important;
}
.sidebar-footer-info .searches-counter {
    background: rgba(46, 32, 20, 0.05) !important;
    border: 1px solid rgba(82, 56, 28, 0.18) !important;
    color: #2e2014 !important;
    font-weight: 600 !important;
}
.searches-counter { color: #2e2014 !important; }

/* Right sidebar vereda info */
.info-placeholder { color: #2e2014 !important; }
.info-item, .info-cell {
    background: rgba(46, 32, 20, 0.05) !important;
}
.info-label { color: #2e2014 !important; font-weight: 600 !important; }
.info-value { color: #2e2014 !important; }

/* Sidebar additional text — todo en oscuro para mejor contraste */
.sidebar-left .sidebar-title,
.sidebar-right .sidebar-title { color: #2e2014 !important; }
.sidebar-left label,
.sidebar-right label,
.sidebar-left .label-secondary,
.sidebar-right .label-secondary { color: #2e2014 !important; }

/* Mobile toggles hover */
.mobile-toggle-btn:hover, .mobile-toggle-btn.active {
    background: #1e3d22 !important;
    border-color: #1e3d22 !important;
    color: #f3eada !important;
}

/* Mobile sidebar close */
.mobile-sidebar-close {
    background: rgba(139, 53, 37, 0.08) !important;
    border: 1px solid rgba(139, 53, 37, 0.20) !important;
    color: #8b3525 !important;
}
.mobile-sidebar-close:hover {
    background: rgba(139, 53, 37, 0.18) !important;
}

/* Mobile sidebar overlay */
.mobile-sidebar-overlay { background: rgba(46, 32, 20, 0.40) !important; }

/* Leaflet zoom controls — mantener legibles sobre paleta cream */
.leaflet-control-zoom a {
    background: rgba(251, 248, 242, 0.92) !important;
    color: #2e2014 !important;
    border: 1px solid rgba(82, 56, 28, 0.20) !important;
}
.leaflet-control-zoom a:hover {
    background: rgba(122, 74, 38, 0.10) !important;
    color: #2d5530 !important;
}

/* Vereda tooltip on map */
.vereda-tooltip {
    background: rgba(251, 248, 242, 0.96) !important;
    border: 1px solid rgba(82, 56, 28, 0.22) !important;
    color: #2e2014 !important;
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast {
    background: #fbf8f2 !important;
    border: 2px solid #2d5530 !important;
    color: #2e2014 !important;
    box-shadow: 0 12px 40px rgba(46, 32, 20, 0.25) !important;
}
.toast.success { background: linear-gradient(135deg, #fbf8f2, #ebdfc4) !important; border-color: #2d5530 !important; }
.toast.error   { background: linear-gradient(135deg, #fbf8f2, #f0d8d2) !important; border-color: #8b3525 !important; }
.toast.info    { background: linear-gradient(135deg, #fbf8f2, #d8c890) !important; border-color: #7a4a26 !important; }
.toast-title   { color: #2e2014 !important; }
.toast-message { color: #5a4630 !important; }
.toast-close   { color: #806c50 !important; }
.toast-close:hover { color: #2e2014 !important; }

/* ============================================================
   MODAL DE INFORME DE CARBONO (vereda + coordenadas)
   Fondo translúcido oscuro estilo barra superior.
   ============================================================ */
.modal-informe { background: rgba(46, 32, 20, 0.55) !important; }
.modal-informe-content {
    background: rgba(58, 40, 22, 0.92) !important;
    backdrop-filter: blur(18px) saturate(125%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(125%) !important;
    border: 1px solid rgba(243, 234, 218, 0.18) !important;
    box-shadow: 0 24px 60px rgba(20, 14, 8, 0.55), 0 0 32px rgba(243, 234, 218, 0.06) !important;
    color: #f3eada !important;
}
.modal-informe-header {
    background: linear-gradient(135deg, rgba(46, 32, 20, 0.65) 0%, rgba(58, 40, 22, 0.55) 50%, rgba(82, 56, 28, 0.50) 100%) !important;
    border-bottom: 1px solid rgba(243, 234, 218, 0.18) !important;
}
.modal-informe-header::before {
    background: linear-gradient(90deg, #d8c890, #f3eada, #c9a878, #d8c890) !important;
}
.modal-informe-title {
    color: #f3eada !important;
    background: linear-gradient(135deg, #fbf8f2 0%, #d8c890 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-family: 'Fraunces', 'Newsreader', Georgia, serif !important;
    font-weight: 600 !important;
}
.modal-informe-close {
    background: rgba(243, 234, 218, 0.10) !important;
    stroke: #d8c890 !important;
    border: 1px solid rgba(243, 234, 218, 0.18) !important;
}
.modal-informe-close:hover {
    background: rgba(243, 234, 218, 0.20) !important;
    stroke: #fbf8f2 !important;
}

/* Cuerpo del informe — todos los textos cream/claro sobre fondo oscuro */
.modal-informe-body { color: #f3eada !important; }
.modal-informe .informe-section-title {
    color: #fbf8f2 !important;
    border-left-color: rgba(216, 200, 144, 0.45) !important;
}
.modal-informe .info-grid { gap: 8px; }
.modal-informe .info-box {
    background: rgba(243, 234, 218, 0.06) !important;
    border-left: 2px solid rgba(216, 200, 144, 0.30) !important;
}
.modal-informe .info-box-label { color: #c9b890 !important; }
.modal-informe .info-box-value { color: #fbf8f2 !important; }
.modal-informe .highlight-box {
    background: rgba(243, 234, 218, 0.08) !important;
    border: 1px solid rgba(216, 200, 144, 0.22) !important;
}
.modal-informe .highlight-value { color: #fbf8f2 !important; }
.modal-informe p,
.modal-informe span:not([style*="color"]),
.modal-informe div:not([style*="background"]):not(.info-box):not(.highlight-box):not(.modal-informe-content):not(.modal-informe-header):not(.modal-informe-body) {
    color: inherit;
}

/* ============================================================
   PRODUCTOS — Layout hoja maple + arco polar (rediseño 2026-04-30 v2)
   Hoja SVG hand-drawn, más grande; cards en arco que envuelve la hoja
   ============================================================ */
.tree-layout.productos-leaf-host {
    width: 100%;
    margin-top: 24px;
}

/* Stage — hoja al centro-izquierda, arco de productos rodeándola
   Stage más bajo: cards compactas de 2 líneas + 9 productos + título caben sin scroll */
.productos-leaf-stage {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    /* v3.1: stage 620 — círculo grande sin corte + header centrado + cards anchas. */
    height: 620px;
    min-height: 620px;
}

/* v3.1: Header CENTRADO sobre el círculo, mismo ancho que la columna izquierda.
   Título + subtítulo alineados al centro del círculo de abajo. */
.stage-header {
    position: absolute;
    left: 0;
    top: 12px;
    width: 480px;
    max-width: 33%;
    z-index: 3;
    text-align: center;
    padding: 0 16px;
}
.stage-header .stage-title {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 3em;
    font-weight: 500;
    color: #806c50;
    margin: 0 0 6px 0;
    line-height: 1.0;
    letter-spacing: -0.012em;
}
.stage-header .stage-subtitle {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.92em;
    font-weight: 400;
    color: #5a4630;
    line-height: 1.42;
    margin: 0 auto;
    max-width: 380px;
    letter-spacing: 0.005em;
}

.leaf-img-wrap {
    position: absolute;
    /* v3.1: círculo grande (440x440) — bajo el header centrado.
       top:135 + height:440 = 575 < stage 620 → SIN CORTE. */
    left: 20px;
    top: 135px;
    transform: none;
    width: 440px;
    height: 440px;
    max-width: 30%;
    z-index: 2;
}
/* SVG decorativo central (hoja / árbol / medallón) */
.leaf-svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
    /* v2.2: sombra con tinte verde para el ginkgo green-tinted */
    filter: drop-shadow(0 18px 42px rgba(45, 85, 48, 0.18));
}
/* Coffee leaf necesita sombra más oscura para profundidad */
.productos-leaf-stage[data-leaf="coffee"] .leaf-svg {
    filter: drop-shadow(0 24px 50px rgba(46, 24, 8, 0.32));
}
/* v2.3: orbital — sombra circular más uniforme y verde */
.productos-leaf-stage[data-leaf="orbital"] .leaf-svg {
    filter: drop-shadow(0 20px 50px rgba(45, 85, 48, 0.22));
}
@keyframes leafSway {
    0%, 100% { transform: translateY(-50%) rotate(-1.2deg); }
    50%      { transform: translateY(-50%) rotate(1.2deg); }
}
.leaf-img-wrap {
    animation: leafSway 9s ease-in-out infinite;
    transform-origin: 50% 92%;
}
/* v2.3: orbital es circular — no se debe inclinar */
.productos-leaf-stage[data-leaf="orbital"] .leaf-img-wrap {
    animation: none;
}
/* v2.3: orbital — contenido más generoso, aprovecha el círculo grande */
/* v3.1: contenido interior del círculo — editorial, jerárquico, premium.
   Layout: número grande arriba | divisor decorativo | nombre | divisor línea | stats. */
.productos-leaf-stage[data-leaf="orbital"] .leaf-content {
    width: 320px;
    top: 50%;
    gap: 0;
}
.productos-leaf-stage[data-leaf="orbital"] .leaf-cat-line {
    /* Etiqueta categórica eliminada */
    display: none;
}
.productos-leaf-stage[data-leaf="orbital"] .leaf-num {
    /* Número grandísimo en serif elegante */
    font-family: 'Newsreader', Georgia, serif;
    font-size: 7em;
    line-height: 0.9;
    background: linear-gradient(180deg, #2d5530 0%, #5a8a4d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 8px 0;
    font-weight: 400;
    letter-spacing: -0.04em;
    position: relative;
}
/* Línea decorativa CORTA bajo el número, a modo de medallón */
.productos-leaf-stage[data-leaf="orbital"] .leaf-num::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: rgba(45, 85, 48, 0.4);
    margin: 8px auto 0;
}
.productos-leaf-stage[data-leaf="orbital"] .leaf-name {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 1.42em;
    line-height: 1.18;
    max-width: 280px;
    margin: 14px 0 22px 0;
    color: #1c130b;
    font-weight: 500;
    letter-spacing: -0.005em;
}
.productos-leaf-stage[data-leaf="orbital"] .leaf-stats {
    max-width: 300px;
    border-top: 1px solid rgba(45, 85, 48, 0.18);
    padding-top: 18px;
    gap: 14px;
    display: flex;
    justify-content: space-around;
}
.productos-leaf-stage[data-leaf="orbital"] .leaf-stat {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}
.productos-leaf-stage[data-leaf="orbital"] .leaf-stat-v {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 1.4em;
    color: #2d5530;
    font-weight: 500;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.0;
    letter-spacing: -0.01em;
}
.productos-leaf-stage[data-leaf="orbital"] .leaf-stat-l {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.55em;
    color: #806c50;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    line-height: 1.2;
    margin-top: 6px;
    font-weight: 500;
}

/* Contenido dentro de la hoja — simétrico, vertical centrado, jerarquía limpia */
.leaf-content {
    position: absolute;
    /* Alineado al centro del cuerpo de la hoja (no al peciolo). */
    left: 50%; top: 48%;
    transform: translate(-50%, -50%);
    width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #2e2014;
    z-index: 5;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.leaf-content.fading { opacity: 0; }
.leaf-cat-line {
    font-size: 0.6em;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #7a4a26;
    font-weight: 700;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.leaf-cat-dot {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #5a8a4d;
    margin-right: 8px;
}
.leaf-num {
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 400;
    font-size: 4em;
    line-height: 1;
    letter-spacing: -0.04em;
    margin: 0 0 6px 0;
    background: linear-gradient(180deg, #3a2110 0%, #7a4a26 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.leaf-name {
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 600;
    font-size: 1em;
    line-height: 1.2;
    color: #2e2014;
    margin: 0 0 10px 0;
    letter-spacing: -0.005em;
    max-width: 200px;
    /* Limita a 2 líneas con elipsis si pasa */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.leaf-tag {
    display: none; /* tag oculto dentro de la hoja, ya está en la card del producto */
}
.leaf-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding-top: 8px;
    border-top: 1px solid rgba(82, 56, 28, 0.22);
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}
.leaf-stat {
    text-align: center;
}
.leaf-stat-v {
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 500;
    font-size: 0.95em;
    color: #2e2014;
    letter-spacing: -0.01em;
    line-height: 1;
    margin-bottom: 2px;
    /* Trunca números muy largos */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.leaf-stat-l {
    font-size: 0.5em;
    color: #806c50;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    /* Sólo primer label, oculta el wrap largo */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Variante COFFEE: hoja sólida sepia, texto cream alto contraste ── */
.productos-leaf-stage[data-leaf="coffee"] .leaf-content { color: #f3eada; }
.productos-leaf-stage[data-leaf="coffee"] .leaf-cat-line { color: #e8c98a; }
.productos-leaf-stage[data-leaf="coffee"] .leaf-cat-dot  { background: #b8d2a8; }
.productos-leaf-stage[data-leaf="coffee"] .leaf-num {
    background: linear-gradient(180deg, #f7e9c8 0%, #d8b878 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.productos-leaf-stage[data-leaf="coffee"] .leaf-name { color: #fbf8f2; }
.productos-leaf-stage[data-leaf="coffee"] .leaf-stats {
    border-top-color: rgba(243, 234, 218, 0.28);
}
.productos-leaf-stage[data-leaf="coffee"] .leaf-stat-v { color: #fbf8f2; }
.productos-leaf-stage[data-leaf="coffee"] .leaf-stat-l { color: rgba(232, 201, 138, 0.75); }

/* Arco de productos — envuelve la hoja desde la derecha
   Anchor del arco: 72% horizontal, 50% vertical del stage.
   Cada card lleva offsets --arc-x / --arc-y en píxeles que la JS calcula
   con coordenadas polares para formar un semicírculo abrazando la hoja. */
.leaf-arc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.leaf-entry {
    position: absolute;
    /* v3.1: cards anchas (820px) en container 1500 → texto completo sin ellipsis. */
    left: 67%; top: 50%;
    transform: translate(calc(-50% + var(--arc-x, 0px)), calc(-50% + var(--arc-y, 0px)));
    width: 820px;
    max-width: 58vw;
    display: grid;
    grid-template-columns: 44px 1fr 26px;
    gap: 20px;
    align-items: center;
    padding: 7px 24px;
    background: rgba(251, 248, 242, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(82, 56, 28, 0.18);
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    pointer-events: auto;
    box-shadow: 0 6px 18px rgba(46, 32, 20, 0.10);
    outline: none;
}
.leaf-entry::before {
    content: '';
    position: absolute;
    left: 0; top: 10px; bottom: 10px;
    width: 4px;
    background: transparent;
    transition: background 0.25s ease, width 0.25s ease;
    border-radius: 2px;
}
.leaf-entry:hover, .leaf-entry:focus {
    transform: translate(calc(-50% + var(--arc-x, 0px) + 6px), calc(-50% + var(--arc-y, 0px))) scale(1.04);
    background: rgba(251, 248, 242, 0.98);
    box-shadow: 0 8px 24px rgba(82, 56, 28, 0.18);
    border-color: rgba(122, 74, 38, 0.30);
    z-index: 5;
}
/* v2.2: Verde priorizado como acento principal — todas las categorías
   muestran banda verde bosque al hover/focus; sepia/cobre quedan como matiz secundario. */
.leaf-entry:hover.cat-diag::before, .leaf-entry:focus.cat-diag::before { background: #2d5530; width: 5px; }
.leaf-entry:hover.cat-acc::before,  .leaf-entry:focus.cat-acc::before  { background: #2d5530; width: 5px; }
.leaf-entry:hover.cat-esp::before,  .leaf-entry:focus.cat-esp::before  { background: #2d5530; width: 5px; }
.leaf-entry.active {
    background: linear-gradient(90deg, rgba(251, 248, 242, 1) 0%, rgba(238, 240, 226, 0.95) 100%);
    box-shadow: 0 6px 20px rgba(45, 85, 48, 0.16);
    border-color: rgba(45, 85, 48, 0.22);
}
.leaf-entry.active.cat-diag::before { background: #2d5530; width: 5px; }
.leaf-entry.active.cat-acc::before  { background: #2d5530; width: 5px; }
.leaf-entry.active.cat-esp::before  { background: #2d5530; width: 5px; }

.le-num {
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 400;
    /* v2.4: número más grande y más visible */
    font-size: 1.85em;
    color: #806c50;
    line-height: 1;
    text-align: center;
    transition: color 0.25s ease;
}
.leaf-entry:hover .le-num,
.leaf-entry:focus .le-num,
.leaf-entry.active .le-num { color: #7a4a26; font-weight: 500; }

.le-body { min-width: 0; overflow: hidden; }

.le-name {
    font-family: 'Newsreader', Georgia, serif;
    /* v2.4: nombre más grande, weight 600, más jerárquico */
    font-weight: 600;
    font-size: 1.25em;
    color: #2e2014;
    line-height: 1.22;
    margin-bottom: 3px;
    letter-spacing: 0.005em;
    transition: color 0.25s ease;
    /* Una sola línea, ellipsis si es largo */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.leaf-entry:hover .le-name,
.leaf-entry:focus .le-name { color: #1c130b; }

.le-desc {
    /* v2.4: desc más grande y más legible — aprovecha el ancho extra */
    font-size: 0.86em;
    color: #5a4630;
    line-height: 1.45;
    font-family: 'Inter', system-ui, sans-serif;
    letter-spacing: 0.012em;
    /* Una sola línea horizontal — más espacio gracias a la card más ancha */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.le-open {
    display: flex;
    align-items: center;
    justify-content: center;
    /* v2.4: chevron más grande, acompaña a las cards más anchas */
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(45, 85, 48, 0.10);
    color: #2d5530;
    transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
    flex-shrink: 0;
    align-self: center;
}
.leaf-entry:hover .le-open,
.leaf-entry:focus .le-open { background: #2d5530; color: #fbf8f2; transform: translateX(4px) scale(1.08); }
.le-open svg { width: 13px; height: 13px; }

/* Responsive: en pantallas chicas header arriba + hoja + lista en columna */
@media (max-width: 1100px) {
    .productos-leaf-stage { height: auto; min-height: auto; padding: 20px 0; }
    .stage-header {
        position: relative;
        left: auto; top: auto;
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 16px 16px;
    }
    .stage-header .stage-subtitle { margin: 0 auto; }
    .leaf-img-wrap {
        position: relative;
        left: auto; top: auto;
        transform: none;
        margin: 0 auto 24px;
        width: 360px;
        height: 400px;
        max-width: 90%;
    }
    .leaf-img-wrap { animation: none; }
    .leaf-arc-list { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 760px; margin: 0 auto; padding: 0 12px; }
    .leaf-entry {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
    }
    .leaf-entry:hover, .leaf-entry:focus { transform: scale(1.02); }
}
@media (max-width: 700px) {
    .leaf-arc-list { grid-template-columns: 1fr; }
    .leaf-img-wrap { width: 260px; height: 290px; }
    .leaf-content { width: 180px; }
    .leaf-num { font-size: 3em; }
    .leaf-name { font-size: 0.95em; }
}

/* ============================================================
   HOME HERO — Paleta Editorial (overrides sobre layout.css)
   Cream + sepia + verde-bosque acento. Conserva estructura
   de stats blocks (vertical strip) — sólo cambia colores.
   ============================================================ */
.hero {
    background:
        radial-gradient(ellipse 900px 600px at 18% 50%, rgba(125, 165, 99, 0.10), transparent 70%),
        radial-gradient(ellipse 700px 500px at 82% 30%, rgba(168, 100, 50, 0.06), transparent 70%),
        #f3eada !important;
}
.hero::before {
    background:
        radial-gradient(ellipse 800px 600px at 15% 50%, rgba(122, 74, 38, 0.05), transparent),
        radial-gradient(ellipse 600px 500px at 85% 30%, rgba(125, 165, 99, 0.07), transparent),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(82,56,28,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') !important;
}

/* Tipografía hero — voz editorial */
.hero .subtitle {
    color: #2e2014 !important;
    font-family: 'Newsreader', 'Fraunces', Georgia, serif;
    font-weight: 500;
    font-size: 2.4em;
    line-height: 1.04;
    letter-spacing: -0.02em;
    text-shadow: none !important;
    max-width: 720px;
    margin-bottom: 24px;
}
.hero .description {
    color: #5a4630 !important;
    font-family: 'Newsreader', 'Fraunces', Georgia, serif;
    font-weight: 400;
    font-size: 1.06em;
    line-height: 1.6;
    max-width: 620px;
}
.hero .logo-hero {
    filter: none !important;
    animation: none !important;
}

/* Botones — verde bosque primary, sepia outline */
.hero .btn-primary {
    background: #2e5a32 !important;
    color: #fbf8f2 !important;
    border: 1px solid #2e5a32 !important;
    box-shadow: 0 6px 18px rgba(46, 90, 50, 0.22) !important;
}
.hero .btn-primary:hover {
    background: #1a3d1e !important;
    border-color: #1a3d1e !important;
    box-shadow: 0 10px 26px rgba(26, 61, 30, 0.32) !important;
}
.hero .btn-secondary {
    background: transparent !important;
    border: 1px solid #7a4a26 !important;
    color: #2e2014 !important;
}
.hero .btn-secondary:hover {
    background: #7a4a26 !important;
    border-color: #7a4a26 !important;
    color: #fbf8f2 !important;
}

/* Stats grid — cream con borde sepia, conserva estructura vertical */
.hero .stats-grid {
    background: rgba(255, 253, 247, 0.65) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(82, 56, 28, 0.20) !important;
    box-shadow: 0 8px 24px rgba(46, 32, 20, 0.06);
}
.hero .stat-card {
    border-bottom-color: rgba(82, 56, 28, 0.12) !important;
}
.hero .stat-card:hover {
    background: rgba(255, 253, 247, 0.95) !important;
}
.hero .stat-icon {
    stroke: #5a8a4d !important;
    opacity: 0.85 !important;
}
.hero .stat-number {
    color: #2e2014 !important;
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 600;
    text-shadow: none !important;
    letter-spacing: -0.02em;
}
.hero .stat-label {
    color: #806c50 !important;
    font-weight: 600;
    letter-spacing: 0.14em;
}
.hero .stat-footnote {
    color: rgba(122, 74, 38, 0.55) !important;
}

/* Logo BioAurea con drop-shadow sepia (no glow blanco) */
.hero .logo-hero {
    filter: drop-shadow(0 8px 24px rgba(82, 56, 28, 0.12)) !important;
}
