.eyebrow { margin: 0 0 var(--space-3); color: var(--color-brand); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; line-height: 1.4; text-transform: uppercase; }
.display-title { max-width: 900px; font-size: var(--heading-display); }
.editorial-title { max-width: 840px; font-size: var(--heading-lg); line-height: 1.02; }
.section-title { max-width: 900px; font-size: var(--heading-md); line-height: 1.05; }
.lead { max-width: 64ch; font-size: clamp(1rem, 1.35vw, 1.125rem); line-height: 1.72; }
.section-heading { max-width: 960px; margin-bottom: var(--space-16); }
.section-heading .eyebrow { margin-bottom: var(--space-3); }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }
.btn { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 0.7rem 1.05rem; border: 1px solid transparent; border-radius: var(--radius-md); font-family: var(--font-ui); font-size: 0.86rem; font-weight: 650; letter-spacing: 0.005em; line-height: 1.2; text-align: center; text-decoration: none; transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast); }
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn--primary { background: var(--color-brand); color: var(--color-brand-contrast); }
.btn--primary:hover { background: var(--color-brand-hover); }
.btn--secondary { border-color: currentColor; background: transparent; color: var(--color-text); }
.btn--dark { background: var(--color-dark); color: var(--color-white); }
.btn--ghost { border-color: rgba(255, 255, 255, 0.55); background: transparent; color: var(--color-white); }
.btn--support { background: var(--color-support); color: var(--color-white); }
.btn--support:hover { background: var(--color-support-hover); }
.text-link { color: var(--color-brand-hover); font-weight: 700; text-underline-offset: 0.25em; }
.support-link { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.42rem 0.55rem; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: var(--radius-sm); color: rgba(255, 255, 255, 0.82); font-size: 0.74rem; font-weight: 600; line-height: 1.1; text-decoration: none; }
.support-link span, .hero-support span, .cta-support span { width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: var(--color-support-muted); }
.support-link:hover { border-color: rgba(255,255,255,0.48); color: var(--color-white); text-decoration: none; }
.media-frame { margin: 0; overflow: hidden; background: var(--color-surface-muted); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.breadcrumbs, .legal-breadcrumb { margin-bottom: var(--space-5); font-size: 0.82rem; }

.site-header { position: sticky; top: 0; z-index: 1000; height: var(--header-height); background: rgba(25,24,23,0.97); border-bottom: 1px solid rgba(255,255,255,0.1); box-shadow: 0 2px 16px rgba(0,0,0,0.1); }
@supports (backdrop-filter: blur(10px)) { .site-header { background: rgba(25,24,23,0.88); backdrop-filter: blur(14px); } }
.header-inner { display: flex; height: 100%; align-items: center; gap: clamp(1rem, 2vw, 1.8rem); }
.logo { display: inline-flex; flex: 0 0 auto; align-items: center; }
.logo img { width: 124px; height: auto; object-fit: contain; }
.nav-desktop { display: none; min-width: 0; flex: 1; align-items: center; justify-content: flex-end; gap: clamp(0.3rem, 0.8vw, 0.9rem); color: rgba(255,255,255,0.78); }
.nav-desktop a { white-space: nowrap; text-decoration: none; }
.nav-desktop a:not(.btn):not(.support-link) { padding: 0.6rem 0; font-size: var(--text-sm); font-weight: 550; }
.nav-desktop a:not(.btn):not(.support-link):hover, .nav-desktop a[aria-current="page"] { color: var(--color-white); }
.nav-desktop .btn { min-height: 44px; padding-inline: 0.9rem; font-size: 0.8rem; }
.header-actions { display: none; align-items: center; gap: 0.7rem; }
.lang-switch { display: inline-flex; align-items: center; gap: 0.3rem; margin-left: 0.1rem; color: rgba(255,255,255,0.58); font-size: var(--text-xs); font-weight: 600; }
.lang-switch a, .lang-switch span { padding: 0.15rem; text-decoration: none; }
.lang-switch .active { color: var(--color-white); }
.menu-toggle { display: inline-flex; width: 44px; height: 44px; flex: 0 0 44px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid rgba(255,255,255,0.22); border-radius: var(--radius-sm); background: transparent; color: var(--color-white); }
.menu-toggle span { width: 20px; height: 1px; background: currentColor; transition: transform var(--transition-fast), opacity var(--transition-fast); }
.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-mobile { position: fixed; inset: var(--header-height) 0 auto; z-index: 999; display: grid; max-height: calc(100dvh - var(--header-height)); gap: 0; overflow-y: auto; padding: var(--space-4) var(--page-padding-mobile) var(--space-5); background: var(--color-dark); border-bottom: 1px solid rgba(255,255,255,0.12); box-shadow: 0 20px 36px rgba(0,0,0,0.22); opacity: 0; pointer-events: none; transform: translateY(-110%); transition: transform var(--transition-fast), opacity var(--transition-fast); }
.nav-mobile.active { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-mobile a { display: flex; min-height: 48px; align-items: center; padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.86); font-size: 1rem; font-weight: 550; text-decoration: none; }
.nav-mobile .btn { margin-top: var(--space-4); border-bottom: 0; }
.nav-mobile .lang-switch { margin-top: var(--space-4); }

.site-footer { padding: var(--space-12) 0 var(--space-5); background: #171615; color: var(--color-white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: var(--space-8); }
.footer-links { display: grid; align-content: start; gap: 0.55rem; }
.footer-links h2 { margin: 0 0 0.35rem; color: var(--color-white); font-family: var(--font-ui); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.footer-links p, .footer-links a { margin: 0; color: rgba(255,255,255,0.68); font-size: 0.85rem; line-height: 1.55; }
.footer-links a:hover, .footer-links a[aria-current="page"] { color: var(--color-white); }
.footer-logo { width: 136px; height: auto; margin-bottom: var(--space-2); }
.footer-links:first-child p:first-of-type { max-width: 30ch; color: rgba(255,255,255,0.88); font-size: 1rem; font-weight: 500; }
.site-footer .lang-switch { margin-top: var(--space-2); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-3) var(--space-5); margin-top: var(--space-10); padding-top: var(--space-4); border-top: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.55); font-size: 0.78rem; }
.site-footer__credit { flex-basis: 100%; margin: 0; color: rgba(255,255,255,0.55); font-size: 0.75rem; }
.site-footer__credit a { color: rgba(255,255,255,0.82); font-weight: 600; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
.site-footer__credit a:hover { color: var(--color-white); }
.site-footer__credit a:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 3px; color: var(--color-white); }

.whatsapp-widget { position: fixed; right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); z-index: 1200; transition: bottom var(--transition-fast), opacity var(--transition-fast), transform var(--transition-fast); }
.whatsapp-widget.is-safe-offset { bottom: max(88px, calc(88px + env(safe-area-inset-bottom))); }
body.menu-open .whatsapp-widget { opacity: 0; pointer-events: none; transform: translateY(8px); }
.whatsapp-toggle { display: inline-flex; width: 56px; height: 56px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.36); border-radius: 50%; background: #257247; box-shadow: 0 12px 28px rgba(0,0,0,0.24); color: var(--color-white); }
.whatsapp-toggle:hover { background: var(--color-support-hover); }
.whatsapp-toggle svg { width: 27px; height: 27px; fill: currentColor; }
.whatsapp-panel { position: absolute; right: 0; bottom: 68px; width: min(330px, calc(100vw - 40px)); padding: 0.55rem; border: 1px solid var(--color-border); background: var(--color-surface); box-shadow: var(--shadow-subtle); opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity var(--transition-fast), transform var(--transition-fast); }
.whatsapp-widget.is-open .whatsapp-panel { opacity: 1; pointer-events: auto; transform: translateY(0); }
.whatsapp-option { display: grid; gap: 0.15rem; padding: 0.85rem; color: var(--color-text); text-decoration: none; }
.whatsapp-option:hover { background: var(--color-surface-muted); }
.whatsapp-option span { color: var(--color-text-muted); font-size: 0.84rem; }

@media (min-width: 1120px) { .nav-desktop { display: flex; } .menu-toggle, .nav-mobile { display: none; } }
@media (min-width: 1120px) { .header-actions { display: flex; } .header-actions + .menu-toggle { display: none; } .site-header .header-actions + .menu-toggle { display: none; } }
@media (max-width: 1099px) { .site-header { background: var(--color-dark); } .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 767px) { .logo img { width: 104px; } .header-actions { display: none; } .footer-grid { grid-template-columns: 1fr 1fr; } .footer-grid > :first-child { grid-column: span 2; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } .footer-grid > :first-child { grid-column: auto; } .footer-bottom { align-items: flex-start; flex-direction: column; } .whatsapp-widget { right: max(14px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); } .whatsapp-toggle { width: 52px; height: 52px; } }
