/* ================================================
   PISCINAS NATURAIS DE MACEIÓ — style.css
   Modo Dia + Reset + Base + Layout + Componentes
   ================================================ */

/* ─── Custom Properties — Modo Dia ─────────────── */
:root {
    --bg:          #F0F8FF;
    --bg-alt:      #E4F3FB;
    --surface:     #FFFFFF;
    --surface-2:   #F7FBFD;
    --accent:      #00B4D8;
    --accent-deep: #0077B6;
    --accent-glow: rgba(0, 180, 216, 0.18);
    --text:        #1A2B3C;
    --text-muted:  #5A7A8A;
    --sand:        #E8D5B7;
    --sand-dark:   #C8A87A;
    --border:      rgba(0, 119, 182, 0.12);
    --shadow:      0 4px 24px rgba(0, 119, 182, 0.10);
    --shadow-lg:   0 12px 48px rgba(0, 119, 182, 0.16);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;

    --radius:    12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out:   0.35s cubic-bezier(0.16, 1, 0.3, 1);

    --nav-h: 72px;

    /* Toggle thumb size */
    --thumb: 32px;
}

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: var(--font-body);
    font-size: clamp(0.938rem, 1.5vw, 1rem);
    line-height: 1.7;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    transition:
        background var(--transition),
        color var(--transition);
}
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: var(--accent-deep);
    text-decoration: none;
    transition: color var(--ease-out);
}
a:hover { color: var(--accent); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── Container ─────────────────────────────────── */
.container {
    width: min(100%, 1200px);
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* ─── HEADER / NAV ───────────────────────────────── */
.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 900;
    height: var(--nav-h);
    background: rgba(240, 248, 255, 0.88);
    backdrop-filter: blur(16px) saturate(1.8);
    -webkit-backdrop-filter: blur(16px) saturate(1.8);
    border-bottom: 1px solid var(--border);
    transition:
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--ease-out);
}
.header.scrolled {
    box-shadow: var(--shadow);
}
.nav {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-deep);
    letter-spacing: -0.02em;
    margin-right: auto;
    transition: color var(--transition);
}
.nav__logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0, 119, 182, 0.28);
    flex-shrink: 0;
    transition: transform var(--ease-out);
}
.nav__logo:hover .nav__logo-img { transform: scale(1.06); }

.nav__links {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}
.nav__link {
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--ease-out), background var(--ease-out);
}
.nav__link:hover {
    color: var(--accent-deep);
    background: var(--accent-glow);
}

/* ─── Theme Toggle ───────────────────────────────── */
.theme-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 99px;
    border: 1.5px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-size: 0.8125rem;
    font-weight: 500;
    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        box-shadow var(--ease-out);
    white-space: nowrap;
}
.theme-toggle:hover {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.theme-toggle__track {
    width: calc(var(--thumb) * 1.9);
    height: calc(var(--thumb) * 0.95);
    background: var(--bg-alt);
    border-radius: 99px;
    position: relative;
    border: 1.5px solid var(--border);
    transition: background var(--transition), border-color var(--transition);
    flex-shrink: 0;
}
.theme-toggle__thumb {
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    width: calc(var(--thumb) * 0.78);
    height: calc(var(--thumb) * 0.78);
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        left var(--ease-out),
        background var(--transition);
}
.theme-toggle__thumb svg {
    width: 14px;
    height: 14px;
    color: #fff;
}
.theme-toggle__label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    line-height: 1;
}
.theme-toggle__name { font-weight: 500; }
/* Etiqueta dia/noite — deixa explícito que o switch troca o período */
.theme-toggle__mode {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.15rem 0.45rem;
    border-radius: 99px;
    background: var(--accent-glow);
    color: var(--accent-deep);
    transition: background var(--transition), color var(--transition);
}
.icon-moon { display: none; }
.icon-sun  { display: block; }

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}
.nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s, background var(--transition);
}


/* ─── HERO ───────────────────────────────────────── */
.hero {
    height: 100svh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity var(--transition);
    will-change: opacity;
}
.hero__bg--day   {
    opacity: 1;
    filter: saturate(1.12);
    background-position: center 42%;
}
.hero__bg--night { opacity: 0; z-index: 1; }

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* Scrim radial no centro (atrás do texto) + degradê vertical —
       garante leitura do título sobre a água clara */
    background:
        radial-gradient(ellipse 75% 60% at center,
            rgba(2, 18, 40, 0.55) 0%,
            rgba(2, 18, 40, 0.32) 50%,
            rgba(2, 18, 40, 0.08) 100%),
        linear-gradient(
            180deg,
            rgba(0, 20, 45, 0.38) 0%,
            rgba(0, 15, 35, 0.22) 45%,
            rgba(0, 12, 30, 0.55) 100%
        );
    transition: background var(--transition);
}
.hero__stars {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition);
}
.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding-block: 2rem;
}
.hero__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    transition: opacity 0.5s, transform 0.5s;
}
.hero__text--night {
    position: absolute;
    inset: auto;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    opacity: 0;
    pointer-events: none;
    width: max-content;
    max-width: 90vw;
}
.hero__text--day {
    opacity: 1;
    transform: translateY(0);
}

.hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.8;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.45), 0 4px 28px rgba(0,0,0,0.5);
}
.hero__title em {
    font-style: italic;
    /* Ciano da marca — coeso com a paleta do site, legível pela sombra */
    color: #5FD9F0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.55), 0 2px 22px rgba(0,0,0,0.4);
    transition: color var(--transition);
}
.hero__sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    max-width: 52ch;
    opacity: 1;
    text-shadow: 0 1px 8px rgba(0,0,0,0.55);
    line-height: 1.65;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255,255,255,0.7);
    animation: bounce 2.4s ease-in-out infinite;
}
.hero__scroll svg { width: 32px; height: 32px; }

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


/* ─── BOTÕES ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 99px;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1;
    transition:
        background var(--ease-out),
        color var(--ease-out),
        border-color var(--ease-out),
        box-shadow var(--ease-out),
        transform var(--ease-out);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn--primary:hover {
    background: var(--accent-deep);
    border-color: var(--accent-deep);
    color: #fff;
    box-shadow: 0 6px 24px rgba(0, 119, 182, 0.35);
}
.btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.9);
    color: #fff;
}
.btn--full { width: 100%; }
.btn--whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.75rem;
    background: #25D366;
    color: #fff;
    border-radius: 99px;
    font-weight: 600;
    font-size: 1rem;
    transition: background var(--ease-out), box-shadow var(--ease-out), transform var(--ease-out);
}
.btn--whatsapp:hover {
    background: #1ebe5a;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
    color: #fff;
}
.btn--whatsapp svg { width: 22px; height: 22px; }


/* ─── SECTION BASE ───────────────────────────────── */
.section {
    padding-block: clamp(4rem, 8vw, 7rem);
}
.section__header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text);
    margin-block: 0.5rem;
    transition: color var(--transition);
}
.section__sub {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 52ch;
    margin-inline: auto;
    transition: color var(--transition);
}

/* Labels / Chips */
.label {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.label--accent {
    background: var(--accent-glow);
    color: var(--accent-deep);
    border: 1px solid rgba(0,180,216,0.2);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.label--day   { background: rgba(0,180,216,0.12); color: var(--accent-deep); }
.label--night { background: rgba(100,160,220,0.15); color: #5BA0D0; }

/* Link more */
.link-more {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--accent-deep);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: gap var(--ease-out), color var(--ease-out);
}
.link-more:hover { gap: 0.5rem; color: var(--accent); }


/* ─── SOBRE ──────────────────────────────────────── */
.sobre { background: var(--surface); transition: background var(--transition); }
.sobre__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
/* Só um card "Sobre" aparece por vez (dia ou noite) — limita a largura e centraliza */
.sobre__card {
    max-width: 820px;
    margin-inline: auto;
    width: 100%;
}
.sobre__card {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface-2);
    border: 1px solid var(--border);
    transition: background var(--transition), border-color var(--transition), box-shadow var(--ease-out);
}
.sobre__card:hover { box-shadow: var(--shadow-lg); }

.sobre__media img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}
.sobre__card:hover .sobre__media img { transform: scale(1.04); }
.sobre__media { overflow: hidden; }

.sobre__body {
    padding: 1.5rem 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.sobre__body .label { align-self: flex-start; }
.sobre__title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    transition: color var(--transition);
}
.sobre__body p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    transition: color var(--transition);
}

/* Card de noite oculto no modo dia */
.sobre__card--night { display: none; }


/* ─── CALENDÁRIO — card próprio, lado a lado com o Sobre ── */
.sobre-calendar-card {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1.75rem 1.75rem 2rem;
    border-radius: var(--radius-lg);
    background: var(--surface-2);
    border: 1px solid var(--border);
    transition: background var(--transition), border-color var(--transition), box-shadow var(--ease-out);
}
.sobre-calendar-card:hover { box-shadow: var(--shadow-lg); }
/* Calendário da noite oculto no modo dia — precisa vir DEPOIS do .sobre-calendar-card
   base (mesma especificidade), senão o display:flex do base prevalece */
.sobre-calendar-card--night { display: none; }
.sobre-calendar-card .label { align-self: flex-start; }
.sobre-calendar-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    transition: color var(--transition);
}
.sobre-calendar-card__sub {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    transition: color var(--transition);
}

.sobre-calendar {
    margin-top: 0.25rem;
    padding: 1.1rem 1.25rem 1.25rem;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: background var(--transition), border-color var(--transition);
}
.sobre-calendar__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}
.sobre-calendar__month {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--text);
    text-transform: capitalize;
    transition: color var(--transition);
}
.sobre-calendar__nav {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--accent-deep);
    font-size: 1.05rem;
    line-height: 1;
    display: grid;
    place-items: center;
    transition: background var(--ease-out), color var(--ease-out), border-color var(--ease-out);
}
.sobre-calendar__nav:hover { background: var(--accent-glow); border-color: var(--accent); }

.sobre-calendar__weekdays,
.sobre-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.3rem;
}
.sobre-calendar__weekdays {
    margin-bottom: 0.4rem;
    text-align: center;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}
.cal-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.05rem;
    border-radius: 8px;
    border: 1px solid transparent;
    background: var(--surface-2);
    font-size: 0.75rem;
    color: var(--text);
    cursor: default;
    transition: background var(--ease-out), border-color var(--ease-out), color var(--ease-out);
}
.cal-day--empty { background: transparent; border: none; }
.cal-day--today { border-color: var(--accent-deep); font-weight: 700; }
.cal-day__num  { line-height: 1; }
.cal-day__moon { font-size: 0.8rem; line-height: 1; }

/* No calendário do dia a maré é o destaque, então a lua entra discreta */
.sobre-calendar[data-calendar="day"] .cal-day__moon { font-size: 0.7rem; opacity: 0.6; }

/* Modo dia — disponibilidade conforme a maré (estimativa lunar) */
.cal-day--available   { background: rgba(0, 180, 216, 0.10); }
.cal-day--unavailable {
    background: rgba(224, 163, 58, 0.16);
    color: #9c6a14;
}

/* Modo noite — luminosidade da lua */
.cal-day--bright { background: rgba(255, 219, 130, 0.20); }
.cal-day--dim    { background: rgba(120, 140, 170, 0.14); color: var(--text-muted); }

/* Modo noite — alerta de maré forte (sizígia): marcador no canto */
.cal-day--strongtide { position: relative; }
.cal-day--strongtide::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E0A33A;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}

/* Célula clicável (tem horários de maré) + escorço da maré */
.cal-day { width: 100%; font-family: inherit; }
button.cal-day { padding: 2px 0; appearance: none; }
.cal-day--has-tide { cursor: pointer; }
.cal-day--has-tide:hover { border-color: var(--accent); box-shadow: 0 2px 8px rgba(0,119,182,0.12); }
.cal-day--has-tide:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 1px; }
.cal-day__spark { width: 86%; height: 12px; margin-top: 1px; display: block; }
.cal-day__spark polyline {
    fill: none;
    stroke: var(--accent-deep);
    stroke-width: 1.4;
    stroke-linejoin: round;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
    opacity: 0.85;
}

/* ── Modal de detalhe do dia (marés + lua) ───────────── */
.tide-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.tide-modal[hidden] { display: none; }
.tide-modal__backdrop { position: absolute; inset: 0; background: rgba(2,14,30,0.6); backdrop-filter: blur(3px); }
.tide-modal__dialog {
    position: relative; background: var(--surface); color: var(--text);
    border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    width: 100%; max-width: 430px; padding: 1.5rem 1.5rem 1.25rem; max-height: 90vh; overflow: auto;
    animation: tmIn .28s var(--ease-out);
}
@keyframes tmIn { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.tide-modal__close { position: absolute; top: .5rem; right: .7rem; background: none; border: none; font-size: 1.7rem; line-height: 1; color: var(--text-muted); cursor: pointer; }
.tide-modal__close:hover { color: var(--text); }
.tide-modal__date { font-size: .8rem; color: var(--text-muted); margin: 0; text-transform: capitalize; }
.tide-modal__title { font-family: var(--font-display); font-size: 1.2rem; margin: .1rem 0 1rem; }
.tide-modal__moon { display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem; }
.tide-moon {
    width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; font-size: 1.85rem; flex-shrink: 0;
    background: radial-gradient(circle at 50% 45%, rgba(255,238,180,.35), rgba(255,238,180,0) 72%);
    animation: moonGlow 3.6s ease-in-out infinite;
}
@keyframes moonGlow {
    0%, 100% { box-shadow: 0 0 12px 2px rgba(255,233,170,.22); }
    50%      { box-shadow: 0 0 22px 7px rgba(255,233,170,.5); }
}
.tide-moon__glyph { filter: drop-shadow(0 0 6px rgba(255,233,170,.55)); animation: moonFloat 4.5s ease-in-out infinite; }
@keyframes moonFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-2px); } }
.tide-moon__info strong { display: block; font-size: .95rem; }
.tide-moon__illum { font-size: .8rem; color: var(--text-muted); }
.tide-chart { width: 100%; height: auto; display: block; margin-bottom: .5rem; }
.tc-area { fill: rgba(0,180,216,.14); }
.tc-line { fill: none; stroke: var(--accent-deep); stroke-width: 2; stroke-linejoin: round; }
.tc-dot--high { fill: var(--accent-deep); }
.tc-dot--low  { fill: #C8A87A; }
.tc-lbl { font-size: 9px; fill: var(--text-muted); font-family: var(--font-body); }
.tide-list { list-style: none; padding: 0; margin: .25rem 0 .9rem; display: flex; flex-direction: column; gap: .35rem; }
.tide-list__item { display: grid; grid-template-columns: auto auto 1fr auto; align-items: center; gap: .55rem; padding: .45rem .65rem; border-radius: 8px; background: var(--surface-2); font-size: .9rem; }
.tide-list__arrow { font-size: .8rem; }
.tide-list__arrow.up { color: #1f9d57; }
.tide-list__arrow.down { color: #cc7a3b; }
.tide-list__time { font-weight: 700; font-variant-numeric: tabular-nums; }
.tide-list__kind { color: var(--text-muted); font-size: .8rem; }
.tide-list__h { font-weight: 600; font-variant-numeric: tabular-nums; }
.tide-list__empty { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }
.tide-modal__legend { font-size: .74rem; color: var(--text-muted); display: flex; align-items: center; flex-wrap: wrap; gap: .3rem .9rem; margin: .25rem 0 .5rem; }
.tide-modal__legend .leg-item { display: inline-flex; align-items: center; gap: .35rem; white-space: nowrap; }
.tide-modal__legend .dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.tide-modal__legend .dot--up { background: #1f9d57; }
.tide-modal__legend .dot--down { background: #cc7a3b; }
.tide-modal__note { font-size: .72rem; color: var(--text-muted); margin: 0; }

/* Caixa de "saída recomendada" no modal */
.tide-rec { display: flex; align-items: center; gap: .7rem; padding: .7rem .85rem; border-radius: 10px; margin-bottom: 1rem; }
.tide-rec__icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.tide-rec strong { display: block; font-size: .98rem; }
.tide-rec__sub { display: block; font-size: .78rem; opacity: .85; margin-top: 1px; }
.tide-rec--ideal { background: rgba(31,157,87,.12); border: 1px solid rgba(31,157,87,.3); color: #1b8049; }
.tide-rec--warn  { background: rgba(224,163,58,.14); border: 1px solid rgba(224,163,58,.4); color: #9c6a14; }

.sobre-calendar__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.1rem;
    margin: 0.9rem 0 0.6rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.sobre-calendar__legend li { display: flex; align-items: center; gap: 0.4rem; }
.sobre-calendar__legend .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.dot--ok     { background: rgba(0, 180, 216, 0.55); }
.dot--warn   { background: rgba(217, 83, 79, 0.6); }
.dot--bright { background: rgba(255, 219, 130, 0.9); }
.dot--dim    { background: rgba(120, 140, 170, 0.55); }
.dot--tide   { background: #E0A33A; }
.legend-moon { font-size: 0.85rem; line-height: 1; flex-shrink: 0; }

.sobre-calendar__note {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.55;
}
.sobre-calendar__note a { color: var(--accent-deep); text-decoration: underline; transition: color var(--ease-out); }
.sobre-calendar__note a:hover { color: var(--accent); }


/* ─── CALENDÁRIO (seção própria) ─────────────────── */
.calendario { background: var(--bg); transition: background var(--transition); }
/* Só um calendário aparece por vez (dia OU noite) — centraliza o card visível */
.calendario__grid {
    display: grid;
    grid-template-columns: min(540px, 100%);
    justify-content: center;
}
.calendario .sobre-calendar-card { width: 100%; }


/* ─── PASSEIOS & VALORES ─────────────────────────── */
.passeios { background: var(--bg); transition: background var(--transition); }
.passeios__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.75rem;
}
.passeio-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 1.75rem 1.6rem;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: background var(--transition), border-color var(--transition), box-shadow var(--ease-out), transform var(--ease-out);
}
.passeio-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.passeio-card__icon { font-size: 2.25rem; line-height: 1; margin-bottom: 0.15rem; }
.passeio-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    transition: color var(--transition);
}
.passeio-card__price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-deep);
    line-height: 1;
    transition: color var(--transition);
}
.passeio-card__currency { font-size: 1.1rem; font-weight: 600; vertical-align: top; }
.passeio-card__price small { font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; color: var(--text-muted); }
.passeio-card__duration {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.passeio-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 0.25rem 0 0.5rem;
    width: 100%;
}
.passeio-card__list li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.passeio-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-deep);
    font-weight: 700;
    transition: color var(--transition);
}
.passeio-card .btn { margin-top: auto; align-self: stretch; }


/* ─── GALERIA ────────────────────────────────────── */
.galeria { background: var(--bg); transition: background var(--transition); }
.galeria__filters {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    border: 1.5px solid var(--border);
    background: var(--surface);
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    transition:
        background var(--ease-out),
        color var(--ease-out),
        border-color var(--ease-out),
        box-shadow var(--ease-out);
}
.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent-deep);
}
.filter-btn--active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.galeria__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 1rem;
}
.galeria__item {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    transition: opacity 0.4s, transform 0.4s;
}
.galeria__item.hidden { display: none; }
.galeria__btn {
    width: 100%;
    position: relative;
    display: block;
}
.galeria__btn img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
    display: block;
}
.galeria__btn:hover img { transform: scale(1.06); }
.galeria__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.galeria__overlay svg { width: 36px; height: 36px; color: #fff; }
.galeria__btn:hover .galeria__overlay { opacity: 1; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0,0,0,0.92);
}
.lightbox__content {
    position: relative;
    z-index: 10000;
    max-width: min(90vw, 1000px);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.lightbox__content img {
    max-height: 78vh;
    max-width: 100%;
    object-fit: contain;
    border-radius: var(--radius);
}
.lightbox__caption {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    text-align: center;
}
.lightbox__close {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10001;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.22); }
.lightbox__close svg { width: 20px; height: 20px; }
.lightbox__nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.22); }
.lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }


/* ─── COMO CHEGAR ────────────────────────────────── */
.chegar { background: var(--surface); transition: background var(--transition); }
.chegar__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}
.chegar__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.chegar__map iframe { display: block; }
.chegar__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.chegar__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: var(--radius);
    background: var(--bg);
    border: 1px solid var(--border);
    transition: background var(--transition), border-color var(--transition);
}
.chegar__icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }
.chegar__item h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
    transition: color var(--transition);
}
.chegar__item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color var(--transition);
}
/* Só o ponto de saída do tema atual aparece (dia OU noite).
   Vem DEPOIS do .chegar__grid base p/ vencer o display:grid (mesma especificidade). */
.chegar__grid--night { display: none; }


/* ─── DICAS ──────────────────────────────────────── */
.dicas { background: var(--bg-alt); transition: background var(--transition); }
/* Alerta do horário de saída */
.dicas-alert {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    max-width: 760px;
    margin: 0 auto 2rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    background: rgba(0, 180, 216, 0.10);
    border: 1px solid rgba(0, 119, 182, 0.25);
    border-left: 4px solid var(--accent);
}
.dicas-alert__icon { font-size: 1.5rem; line-height: 1.2; flex-shrink: 0; }
.dicas-alert p { font-size: .9rem; color: var(--text); line-height: 1.55; margin: 0; }
.dicas-alert a { color: var(--accent-deep); font-weight: 600; text-decoration: underline; }
.dicas__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: 1.25rem;
}
.dica-card {
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: background var(--transition), border-color var(--transition), box-shadow var(--ease-out);
}
.dica-card:hover { box-shadow: var(--shadow); }
.dica-card--night { display: none; }

.dica-card__icon { font-size: 2rem; margin-bottom: 0.75rem; line-height: 1; }
.dica-card__title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
    transition: color var(--transition);
}
.dica-card__list { display: flex; flex-direction: column; gap: 0.35rem; }
.dica-card__list li {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding-left: 1rem;
    position: relative;
    transition: color var(--transition);
}
.dica-card__list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}


/* ─── CONTATO ────────────────────────────────────── */
.contato { background: var(--surface); transition: background var(--transition); }

/* ─── FAQ (acordeão) ─────────────────────────────── */
.faq {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq__item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface-2);
    overflow: hidden;
    transition: border-color var(--ease-out), box-shadow var(--ease-out), background var(--transition);
}
.faq__item[open] { border-color: var(--accent); box-shadow: var(--shadow); }
.faq__q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--text);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
    content: '+';
    flex-shrink: 0;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    color: var(--accent-deep);
    transition: transform var(--ease-out);
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__q:hover { color: var(--accent-deep); }
.faq__a {
    padding: 0 1.25rem 1.2rem;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-muted);
}
.faq__a a { color: var(--accent-deep); font-weight: 600; text-decoration: underline; }
.faq__a a:hover { color: var(--accent); }

/* ─── CTA do WhatsApp abaixo do FAQ ──────────────── */
.faq-cta {
    max-width: 760px;
    margin: 2rem auto 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.faq-cta__text { font-size: 1rem; color: var(--text-muted); margin: 0; }
.btn--lg { padding: 0.95rem 2.25rem; font-size: 1.05rem; border-radius: 999px; }

.contato__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contato__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    transition: color var(--transition);
}
.form-group input,
.form-group textarea {
    padding: 0.8rem 1rem;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition:
        border-color var(--ease-out),
        background var(--transition),
        color var(--transition),
        box-shadow var(--ease-out);
    resize: vertical;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group input.error,
.form-group textarea.error {
    border-color: #E05A6A;
}
.form-error {
    font-size: 0.8125rem;
    color: #C94040;
    min-height: 1.2em;
}

/* Honeypot anti-bot — fora da tela mas acessível a bots */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.btn__loading { display: none; }
.btn--loading .btn__text   { display: none; }
.btn--loading .btn__loading { display: inline; }

.form-feedback {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}
.form-feedback.success {
    display: block;
    background: rgba(0,200,120,0.12);
    color: #0A8050;
    border: 1px solid rgba(0,200,120,0.25);
}
.form-feedback.error {
    display: block;
    background: rgba(224,90,106,0.10);
    color: #B03040;
    border: 1px solid rgba(224,90,106,0.2);
}

.contato__aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}
.contato__aside-intro { font-size: 1rem; color: var(--text-muted); margin-bottom: .25rem; }
.contato__email { gap: .5rem; word-break: break-all; }
.contato__email svg { width: 20px; height: 20px; flex-shrink: 0; }
.contato__info {
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    background: var(--bg);
    border: 1px solid var(--border);
    transition: background var(--transition), border-color var(--transition);
}
.contato__info h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    transition: color var(--transition);
}
.contato__info p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    transition: color var(--transition);
}


/* ─── FOOTER ─────────────────────────────────────── */
.footer {
    padding-block: 3rem 2rem;
    background: var(--text);
    color: rgba(255,255,255,0.7);
    transition: background var(--transition);
}
.footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    justify-content: space-between;
}
.footer__brand { display: flex; flex-direction: column; gap: 0.5rem; max-width: 280px; }
.footer__logo  { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: #fff; }
.footer__logo-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.footer__brand p { font-size: 0.875rem; }
.footer__social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.35rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--ease-out);
}
.footer__social svg { width: 20px; height: 20px; flex-shrink: 0; }
.footer__social:hover { color: #fff; }
.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    align-items: center;
}
.footer__links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    transition: color var(--ease-out);
}
.footer__links a:hover { color: #fff; }
.footer__copy {
    width: 100%;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 0.5rem;
}

/* ─── WhatsApp Flutuante ─────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 800;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform var(--ease-out), box-shadow var(--ease-out);
    animation: pulse-wa 3s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
}

/* ─── TripAdvisor: flutuante, botão, avaliações ──── */
.tripadvisor-float {
    position: fixed;
    right: 1.75rem;
    bottom: calc(1.75rem + 56px + 0.85rem); /* logo acima do WhatsApp */
    z-index: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem 0.55rem 0.6rem;
    background: #00AA6C;
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,170,108,0.4);
    transition: transform var(--ease-out), box-shadow var(--ease-out);
}
.tripadvisor-float:hover { transform: scale(1.05); box-shadow: 0 6px 28px rgba(0,170,108,0.55); }
.tripadvisor-float svg { width: 26px; height: 26px; flex-shrink: 0; }
@media (max-width: 560px) {
    .tripadvisor-float { padding: 0.85rem; }
    .tripadvisor-float__txt { display: none; }
}

.btn--tripadvisor { background: #00AA6C; color: #fff; }
.btn--tripadvisor:hover { background: #008f5a; }
.btn--tripadvisor svg { width: 22px; height: 22px; }

/* Seção de avaliações */
.avaliacoes { background: var(--bg-alt); transition: background var(--transition); }
.avaliacoes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.review-card {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: background var(--transition), border-color var(--transition), box-shadow var(--ease-out), transform var(--ease-out);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.review-card__stars { color: #00AA6C; letter-spacing: 2px; font-size: 0.95rem; line-height: 1; }
.review-card__text { margin: 0; font-size: 0.95rem; line-height: 1.6; color: var(--text); font-style: italic; transition: color var(--transition); }
.review-card__author { font-size: 0.85rem; font-weight: 700; color: var(--text); margin-top: auto; transition: color var(--transition); }
.review-card__author span { color: var(--text-muted); font-weight: 400; }
.avaliacoes__cta { text-align: center; }

/* Selo de nota do TripAdvisor no cabeçalho */
.ta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: transform var(--ease-out), box-shadow var(--ease-out);
}
.ta-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.ta-badge__owl { color: #00AA6C; display: flex; }
.ta-badge__owl svg { width: 32px; height: 32px; }
.ta-badge__info { display: flex; flex-direction: column; text-align: left; }
.ta-badge__score { display: flex; align-items: center; gap: 0.4rem; font-weight: 800; font-size: 1.15rem; color: var(--text); }
.ta-badge__stars { color: #00AA6C; font-size: 0.85rem; letter-spacing: 1px; }
.ta-badge__count { font-size: 0.76rem; color: var(--text-muted); }


/* ─── Scroll Reveal ──────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ─── RESPONSIVO ─────────────────────────────────── */
@media (max-width: 1024px) {
    .sobre__grid   { grid-template-columns: 1fr; }
    .chegar__grid  { grid-template-columns: 1fr; }
    .contato__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__hamburger { display: flex; }
    .theme-toggle__label { display: none; }

    /* Menu mobile aberto */
    .nav__links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: var(--nav-h) 0 auto;
        background: var(--surface);
        padding: 1.5rem;
        border-bottom: 1px solid var(--border);
        gap: 0.25rem;
        z-index: 899;
        box-shadow: var(--shadow-lg);
    }
    .nav__links.open .nav__link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero__actions { gap: 0.75rem; }
    .btn { padding: 0.65rem 1.35rem; font-size: 0.875rem; }
    .dicas__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .dicas__grid { grid-template-columns: 1fr; }
    .galeria__grid { grid-template-columns: 1fr; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .footer__inner { flex-direction: column; }
}

/* ─── Focus visible ──────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ─── Reduced motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}
