/* ==========================================================================
   EVC Turismo — stylesheet
   Paleta tirada do logo: indigo #29166f, dourado #f4af01, laranja #e36013,
   vermelho #da251c, verde #01923f, azul-mar #01a0de.
   Ordem: tokens → reset → tipografia → primitivos → secções → responsivo
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
    /* cores do logo */
    --indigo: #29166f;
    --indigo-deep: #1b0f4d;
    --gold: #f4af01;
    --orange: #e36013;
    --red: #da251c;
    --green: #01923f;
    --green-light: #0bb054;
    --sea: #01a0de;

    /* fundos */
    --ink: #0b0722;
    --ink-2: #140d33;
    --ink-3: #1c1342;

    --white: #fff;
    --white-08: rgba(255, 255, 255, .08);
    --white-12: rgba(255, 255, 255, .12);
    --white-20: rgba(255, 255, 255, .2);
    --white-70: rgba(255, 255, 255, .72);
    --black-40: rgba(0, 0, 0, .4);
    --black-70: rgba(0, 0, 0, .7);
    --indigo-10: rgba(41, 22, 111, .1);

    --sunset: linear-gradient(90deg, #f4af01 0%, #e36013 55%, #da251c 100%);

    --font: 'Red Hat Display', sans-serif;

    --container: 1220px;
    --gutter: 20px;
    --section-y: 80px;
    --radius: 12px;
    --radius-pill: 1000px;

    --ease: cubic-bezier(.44, 0, .56, 1);
    --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* NUNCA pôr overflow-x: hidden/clip no html ou body — parte o position:fixed
   no mobile e o position:sticky nos filhos. O overflow é contido localmente
   por .ticker, .hero, .gal-card, .brand-card, etc. */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 170px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    background: var(--ink);
    color: var(--white);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
ul,
ol {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg,
video {
    display: block;
    max-width: 100%;
}

button,
input,
textarea {
    font: inherit;
    color: inherit;
}

button {
    background: none;
    border: 0;
    cursor: pointer;
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

.sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.icon {
    display: block;
    flex: 0 0 auto;
    fill: none;
}

/* --------------------------------------------------------------------------
   3. Tipografia
   -------------------------------------------------------------------------- */
h1,
.hero__title {
    font-size: clamp(32px, 4.6vw, 52px);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -.025em;
}

h2,
.section__title {
    font-size: clamp(28px, 4.2vw, 46px);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -.025em;
}

h3 {
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
}

h5 {
    font-size: clamp(18px, 1.9vw, 22px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.tagline {
    color: var(--gold);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.section__sub {
    max-width: 660px;
    color: var(--white-70);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
}

.rating-text {
    color: var(--white-70);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
}

/* --------------------------------------------------------------------------
   4. Primitivos de layout
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section {
    position: relative;
    padding-block: var(--section-y);
}

.section__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    margin-bottom: 48px;
}

.section__head--left {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 0;
}

.section__cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.subheading-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white-70);
    font-size: 16px;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--white-70);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
}

.dot-sep {
    flex: 0 0 auto;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

.dot-sep--dark {
    background: var(--white);
    opacity: .45;
}

.divider-line {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--white-12);
}

.intro-label {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    width: max-content;
    max-width: 100%;
    padding: 10px 20px;
    border: 1px solid var(--white-12);
    border-radius: 99px;
    background: var(--black-40);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    font-size: 14px;
    font-weight: 600;
}

.intro-label__accent {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   5. Botões — troca das duas setas em hover
   -------------------------------------------------------------------------- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.01em;
    white-space: nowrap;
    overflow: hidden;
    transition: background-color .3s var(--ease), color .3s var(--ease),
        border-color .3s var(--ease), transform .3s var(--ease);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--lg {
    height: 56px;
    padding: 14px 28px;
    font-size: 17px;
}

.btn--whatsapp {
    background: var(--green);
    color: var(--white);
}

.btn--whatsapp:hover {
    background: var(--green-light);
}

.btn--gold {
    background: var(--gold);
    color: var(--indigo);
}

.btn--gold:hover {
    background: var(--orange);
    color: var(--white);
}

.btn--outline {
    border: 1px solid var(--white-20);
    background: var(--white-08);
    color: var(--white);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.btn--outline:hover {
    background: var(--white);
    color: var(--indigo);
    border-color: var(--white);
}

.btn--ghost {
    border: 1px solid var(--white-20);
    background: transparent;
    color: var(--white);
}

.btn--ghost:hover {
    background: var(--gold);
    color: var(--indigo);
    border-color: var(--gold);
}

/* disco da seta */
.btn__arrow {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border-radius: 100px;
    background: var(--indigo);
    color: var(--white);
    overflow: hidden;
    transition: background-color .3s var(--ease), color .3s var(--ease);
}

.btn--ghost .btn__arrow {
    background: var(--gold);
    color: var(--indigo);
}

.btn--ghost:hover .btn__arrow {
    background: var(--indigo);
    color: var(--white);
}

.btn__arrow .icon {
    grid-area: 1 / 1;
    transition: transform .4s var(--ease-out), opacity .3s var(--ease);
}

.btn__arrow .icon--in {
    transform: translate(-140%, 140%);
    opacity: 0;
}

.btn:hover .btn__arrow .icon--in {
    transform: translate(0, 0);
    opacity: 1;
}

.btn:hover .btn__arrow .icon--out {
    transform: translate(140%, -140%);
    opacity: 0;
}

.arrow-circle {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white-08);
    color: var(--white);
    transition: background-color .3s var(--ease), color .3s var(--ease),
        transform .4s var(--ease-out);
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* sem gap: a faixa e a navbar ficam coladas, senão vê-se a página
       por entre as duas quando se faz scroll */
    gap: 0;
    width: 100vw;
    transition: transform .45s var(--ease);
    animation: header-in .7s var(--ease-out) both;
}

.header.is-hidden {
    transform: translateY(-110%);
}

.header.is-scrolled .navbar {
    background: rgba(11, 7, 34, .82);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

@keyframes header-in {
    from {
        opacity: 0;
        transform: translateY(-24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* faixa superior com o degradê do pôr do sol do logo */
.offer-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100vw;
    padding: 14px 56px 14px 20px;
    background: var(--sunset);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    text-align: center;
    overflow: hidden;
    transition: height .35s var(--ease), padding .35s var(--ease), opacity .25s var(--ease);
}

.offer-banner__sep {
    flex: 0 0 auto;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--white);
    opacity: .7;
}

.offer-banner.is-closed {
    height: 0;
    padding-block: 0;
    opacity: 0;
    pointer-events: none;
}

.offer-banner__close {
    position: absolute;
    top: 50%;
    right: 20px;
    translate: 0 -50%;
    display: grid;
    place-items: center;
    color: var(--white);
    transition: transform .3s var(--ease);
}

.offer-banner__close:hover {
    transform: rotate(90deg);
}

.navbar {
    width: 100vw;
    padding: 14px 0;
    transition: background-color .3s var(--ease);
}

.navbar__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

/* o logo é multicolor — precisa de placa branca para ler em qualquer fundo */
.navbar__logo {
    display: block;
    flex: 0 0 auto;
    padding: 6px 12px;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
    transition: transform .3s var(--ease-out);
}

.navbar__logo:hover {
    transform: translateY(-2px);
}

.navbar__logo img {
    width: 104px;
    height: auto;
    object-fit: contain;
}

/* menu inline: escondido por omissão, aparece a partir de 992px */
.navbar__links {
    display: none;
    align-items: center;
    gap: 22px;
    margin-inline: auto;
}

.navbar__links a {
    position: relative;
    display: inline-block;
    padding: 6px 0;
    color: var(--white-70);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition: color .25s var(--ease);
}

/* sublinhado que cresce a partir do centro */
.navbar__links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--gold);
    translate: -50% 0;
    transition: width .3s var(--ease-out);
}

.navbar__links a:hover,
.navbar__links a.is-current {
    color: var(--white);
}

.navbar__links a:hover::after,
.navbar__links a.is-current::after {
    width: 100%;
}

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

.navbar__phone {
    height: 42px;
    padding: 10px 18px;
    font-size: 15px;
}

.navbar__phone .icon {
    color: var(--gold);
}

.navbar__phone:hover .icon {
    color: inherit;
}


.navbar__toggle {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: var(--white);
    transition: color .25s var(--ease);
}

.navbar__toggle:hover {
    color: var(--gold);
}

/* --- ponto de corte do menu ---
   a partir daqui o menu é inline e o hambúrguer desaparece */
@media (min-width: 992px) {
    .navbar__links {
        display: flex;
    }

    .navbar__toggle {
        display: none;
    }

    .nav-drawer {
        display: none;
    }
}

/* drawer — fade, nunca translateX (evita overflow do documento) */
.nav-drawer {
    width: 100vw;
    margin-top: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--ease), visibility 0s linear .35s;
}

.nav-drawer.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity .35s var(--ease), visibility 0s linear 0s;
}

.nav-drawer__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: calc(100% - 40px);
    max-width: var(--container);
    margin-inline: auto;
    padding: 24px;
    border: 1px solid var(--white-12);
    border-radius: 20px;
    background: rgba(11, 7, 34, .97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
}

.nav-drawer__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
}

.nav-drawer__list a {
    display: inline-block;
    padding: 6px 0;
    color: var(--white-70);
    font-size: 18px;
    font-weight: 600;
    transition: color .25s var(--ease);
}

.nav-drawer__list a:hover {
    color: var(--gold);
}

.nav-drawer__cta {
    align-self: flex-start;
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 100svh;
    height: 900px;
    max-height: 900px;
    padding-bottom: 90px;
    overflow: hidden;
    background: var(--ink);
}

.hero__slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s var(--ease);
}

.hero__slide.is-active {
    opacity: 1;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.12);
}

.hero__slide.is-active img {
    animation: ken-burns 9s var(--ease) forwards;
}

@keyframes ken-burns {
    from {
        transform: scale(1.18);
    }

    to {
        transform: scale(1);
    }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(11, 7, 34, .6) 0%, rgba(11, 7, 34, .12) 28%,
            rgba(11, 7, 34, .62) 72%, rgba(11, 7, 34, .94) 100%),
        linear-gradient(90deg, rgba(27, 15, 77, .45) 0%, rgba(27, 15, 77, 0) 65%);
}

.hero__container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.hero__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.hero__title {
    max-width: 900px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .45);
}

.hero__sub {
    max-width: 720px;
    color: var(--white-70);
    font-size: clamp(15px, 1.4vw, 17px);
    font-weight: 500;
    line-height: 1.55;
}

.hero__dots {
    position: absolute;
    left: 50%;
    bottom: 32px;
    translate: -50% 0;
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    background: var(--white-20);
    transition: width .35s var(--ease), background-color .35s var(--ease);
}

.hero__dot.is-active {
    width: 28px;
    border-radius: 99px;
    background: var(--gold);
}

/* --------------------------------------------------------------------------
   8. Ticker / marquee
   -------------------------------------------------------------------------- */
.ticker {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* contido localmente — nunca no html/body */
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.ticker__track {
    display: flex;
    align-items: stretch;
    gap: 32px;
    width: max-content;
    will-change: transform;
    animation: ticker-scroll var(--ticker-duration, 40s) linear infinite;
}

.ticker[data-direction="reverse"] .ticker__track {
    animation-direction: reverse;
}

.ticker:hover .ticker__track,
.ticker:focus-within .ticker__track {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-1 * var(--ticker-distance, 50%)), 0, 0);
    }
}

.ticker--chips .ticker__track {
    gap: 16px;
    align-items: center;
}

/* --------------------------------------------------------------------------
   9. Cards de serviço (marquee)
   -------------------------------------------------------------------------- */
.svc-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 auto;
    width: 366px;
    padding: 16px;
    border: 1px solid var(--white-08);
    border-radius: 18px;
    background: var(--ink-2);
    transition: border-color .3s var(--ease), background-color .3s var(--ease),
        transform .4s var(--ease-out);
}

.svc-card:hover {
    border-color: var(--gold);
    background: var(--ink-3);
    transform: translateY(-4px);
}

.svc-card__media {
    position: relative;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
}

.svc-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease-out);
}

.svc-card:hover .svc-card__media img {
    transform: scale(1.07);
}

.svc-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    border-radius: 99px;
    background: var(--gold);
    color: var(--indigo);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.svc-card__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 auto;
}

.svc-card__info p {
    color: var(--white-70);
    font-size: 15px;
    line-height: 1.5;
}

/* texto e seta centrados como um par, em vez de encostados às pontas */
.svc-card__btn {
    justify-content: center;
    width: 100%;
}

/* --------------------------------------------------------------------------
   10. Sobre
   -------------------------------------------------------------------------- */
.sobre {
    background: var(--ink-2);
}

.sobre__grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 48px;
    align-items: center;
}

.sobre__photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.sobre__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out);
}

.sobre__photo:hover img {
    transform: scale(1.04);
}

.sobre__photo figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 40px 20px 16px;
    background: linear-gradient(180deg, transparent, rgba(11, 7, 34, .92));
    font-size: 14px;
    font-weight: 600;
}

.sobre__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sobre__text p {
    color: var(--white-70);
    font-size: 17px;
    line-height: 1.6;
}

.sobre__highlight {
    padding-left: 18px;
    border-left: 3px solid var(--gold);
    color: var(--white) !important;
    font-weight: 600;
}

.motivos {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.motivos li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.motivos__icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
}

/* barra de números */
.stats {
    margin-top: 64px;
    background: var(--sunset);
    color: var(--white);
    overflow: hidden;
}

.stats__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-block: 20px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.stat h3 {
    flex: 0 0 auto;
    font-size: clamp(24px, 2.6vw, 34px);
    font-weight: 800;
}

.stat p {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0;
}

.stat__sep {
    flex: 0 0 auto;
    width: 1px;
    height: 24px;
    background: var(--white);
    opacity: .45;
}

/* --------------------------------------------------------------------------
   11. Roteiros
   -------------------------------------------------------------------------- */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.dest-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dest-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
}

.dest-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease-out);
}

.dest-card:hover .dest-card__media img {
    transform: scale(1.06);
}

.dest-card__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dest-card__price {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
}

.dest-card__price h5 {
    color: var(--gold);
}

.dest-card__price .rating-text {
    display: block;
    margin-top: 6px;
}

.dest-card:hover .arrow-circle {
    background: var(--gold);
    color: var(--indigo);
    transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   12. Regiões (chips em marquee)
   -------------------------------------------------------------------------- */
.regioes {
    background: var(--ink-2);
}

.regiao-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    padding: 14px 26px;
    border: 1px solid var(--white-12);
    border-radius: 99px;
    background: var(--ink-3);
    color: var(--white);
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 700;
    white-space: nowrap;
    transition: border-color .3s var(--ease), background-color .3s var(--ease);
}

.regiao-chip .icon {
    color: var(--gold);
}

.regiao-chip:hover {
    border-color: var(--gold);
    background: var(--indigo-deep);
}

/* --------------------------------------------------------------------------
   13. Frota
   -------------------------------------------------------------------------- */
.frota__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.frota__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.frota__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 8px;
}

.frota__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border: 1px solid var(--white-08);
    border-radius: 14px;
    background: var(--ink-2);
    transition: border-color .3s var(--ease), transform .3s var(--ease-out);
}

.frota__list li:hover {
    border-color: var(--gold);
    transform: translateX(4px);
}

.frota__icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--indigo);
    color: var(--gold);
}

.frota__list strong {
    color: var(--gold);
    font-size: 24px;
    font-weight: 800;
}

.frota__list span:last-child {
    font-size: 16px;
    font-weight: 600;
}

.frota__photo {
    border-radius: 20px;
    overflow: hidden;
}

.frota__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out);
}

.frota__photo:hover img {
    transform: scale(1.04);
}

/* --------------------------------------------------------------------------
   14. Galeria
   -------------------------------------------------------------------------- */
.galeria {
    background: var(--ink-2);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    /* linhas com altura definida: sem isto, o tile de destaque colapsa quando
       ocupa sozinho as duas primeiras linhas (acontece a 2 colunas) */
    grid-auto-rows: 210px;
    gap: 20px;
}

.gal-card {
    position: relative;
    display: block;
    height: 210px;
    border-radius: var(--radius);
    overflow: hidden;
}

/* tile de destaque: 2 colunas x 2 linhas, para a grelha fechar em 4x3 */
/* forma explícita: `grid-row: span 2` sozinho deixa o fim em `auto`,
   e o item acaba a ocupar só uma linha */
.gal-card--feature {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    height: 100%;
}

.gal-card--feature .gal-card__text h3 {
    font-size: clamp(22px, 2.4vw, 28px);
}

.gal-card--feature .gal-card__count {
    font-size: 14px;
}

.gal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease-out);
}

.gal-card:hover img {
    transform: scale(1.08);
}

.gal-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0) 30%, rgba(11, 7, 34, .9) 105%);
    transition: opacity .4s var(--ease);
}

.gal-card:hover .gal-card__overlay {
    opacity: .85;
}

.gal-card__text {
    position: absolute;
    inset: auto 15px 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: transform .45s var(--ease-out);
}

.gal-card:hover .gal-card__text {
    transform: translateY(-4px);
}

.gal-card__text h3 {
    font-size: 20px;
}

.gal-card__count {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
}

/* --------------------------------------------------------------------------
   15. FAQ
   -------------------------------------------------------------------------- */
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 900px;
    margin-inline: auto;
}

.faq-item {
    border-bottom: 1px solid var(--white-12);
    transition: border-color .3s var(--ease);
}

.faq-item.is-open {
    border-color: var(--gold);
}

.faq-item__q {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 22px 0;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.02em;
    transition: color .25s var(--ease);
}

.faq-item__q:hover {
    color: var(--gold);
}

.faq-item__chevron {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white-08);
    transition: transform .4s var(--ease-out), background-color .3s var(--ease),
        color .3s var(--ease);
}

.faq-item.is-open .faq-item__chevron {
    transform: rotate(180deg);
    background: var(--gold);
    color: var(--indigo);
}

.faq-item__a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .45s var(--ease-out);
}

.faq-item.is-open .faq-item__a {
    grid-template-rows: 1fr;
}

.faq-item__a>p {
    overflow: hidden;
    padding-left: 42px;
    color: var(--white-70);
    font-size: 16px;
    line-height: 1.6;
    opacity: 0;
    transition: opacity .35s var(--ease) .1s, padding-bottom .45s var(--ease-out);
}

.faq-item.is-open .faq-item__a>p {
    padding-bottom: 22px;
    opacity: 1;
}

/* --------------------------------------------------------------------------
   16. CTA final
   -------------------------------------------------------------------------- */
.newsletter__box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 440px;
    padding: 64px 24px;
    border-radius: 24px;
    overflow: hidden;
}

.newsletter__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 1.2s var(--ease-out);
}

.newsletter__box:hover .newsletter__bg {
    transform: scale(1.06);
}

.newsletter__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27, 15, 77, .78) 0%, rgba(11, 7, 34, .88) 100%);
}

.newsletter__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
    max-width: 760px;
    text-align: center;
}

.newsletter__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-final__buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

   17. Rodapé + contacto
   -------------------------------------------------------------------------- */
.footer {
    position: relative;
    padding-block: 80px;
    background: var(--ink-2);
}

.footer__inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 64px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    flex: 1 1 400px;
    max-width: 400px;
}

.brand-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    height: 500px;
    padding: 20px;
    border-radius: 28px;
    overflow: hidden;
}

.brand-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}

.brand-card:hover .brand-card__bg {
    transform: scale(1.05);
}

.brand-card__panel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    padding: 28px;
    border-radius: 18px;
    background: var(--white);
    color: var(--indigo);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}

.brand-card__logo img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.brand-card__title {
    font-size: 26px;
    line-height: 1.2;
}

.brand-card__meta {
    color: rgba(41, 22, 111, .72);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
}

.brand-card__social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-card__social a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--indigo-10);
    color: var(--indigo);
    transition: background-color .3s var(--ease), color .3s var(--ease),
        transform .3s var(--ease-out);
}

.brand-card__social a:hover {
    background: var(--indigo);
    color: var(--gold);
    transform: translateY(-3px);
}

.footer__legal {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: var(--white-70);
    font-size: 14px;
    letter-spacing: 0;
}

.footer__license {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__legal a {
    transition: color .25s var(--ease);
}

.footer__legal a:hover {
    color: var(--gold);
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    flex: 1 1 550px;
    max-width: 550px;
}

.contact__icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 100px;
    background: var(--white-08);
    color: var(--gold);
}

.contact__details {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 22px 56px;
}

.contact__detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white-70);
    font-size: 14px;
    letter-spacing: 0;
}

.contact__detail a {
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 700;
    transition: color .25s var(--ease);
}

.contact__detail a:hover {
    color: var(--gold);
}

.contact__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.contact__note {
    max-width: 520px;
    color: var(--white-70);
    font-size: 15px;
    line-height: 1.55;
}

/* --------------------------------------------------------------------------
   18. WhatsApp flutuante
   Usa left: calc(100vw - X) em vez de right, porque `right` pode ser
   calculado a partir do documento quando há overflow e atirar o botão
   para fora do ecrã no mobile.
   -------------------------------------------------------------------------- */
.wa-float {
    position: fixed;
    bottom: 24px;
    left: calc(100vw - 88px);
    z-index: 90;
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(1, 146, 63, .45);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transition: background-color .3s var(--ease), transform .3s var(--ease-out);
}

.wa-float:hover {
    background: var(--green-light);
    transform: translateZ(0) scale(1.08);
}

/* --------------------------------------------------------------------------
   19. Banner de cookies
   width: 100vw em vez de left/right: 0 — com overflow no documento, `right: 0`
   pode expandir o banner para além do viewport (ver CLAUDE.md).
   -------------------------------------------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 95;
    width: 100vw;
    padding: 16px var(--gutter);
    border-top: 1px solid var(--white-12);
    background: rgba(11, 7, 34, .97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, .45);
    overflow: hidden;
    box-sizing: border-box;
    transform: translateY(110%) translateZ(0);
    -webkit-transform: translateY(110%) translateZ(0);
    transition: transform .5s var(--ease-out);
}

.cookie-banner.is-visible {
    transform: translateY(0) translateZ(0);
    -webkit-transform: translateY(0) translateZ(0);
}

.cookie-banner__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 28px;
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
}

.cookie-banner__text {
    flex: 1 1 380px;
    color: var(--white-70);
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
}

.cookie-banner__text a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.cookie-banner__btn {
    height: 42px;
    padding: 10px 22px;
    font-size: 15px;
}

/* enquanto o banner está visível, o botão flutuante sobe */
body.has-cookie-banner .wa-float {
    bottom: 116px;
}

/* --------------------------------------------------------------------------
   20. Página legal (política de privacidade)
   -------------------------------------------------------------------------- */
.header--simple .navbar {
    background: rgba(11, 7, 34, .92);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--white-08);
}

.legal {
    padding-block: 160px 96px;
}

.legal__inner {
    max-width: 820px;
}

.legal__back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    color: var(--white-70);
    font-size: 15px;
    font-weight: 600;
    transition: color .25s var(--ease);
}

.legal__back:hover {
    color: var(--gold);
}

.legal__back-icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white-08);
    rotate: 180deg;
    transition: background-color .25s var(--ease), color .25s var(--ease);
}

.legal__back:hover .legal__back-icon {
    background: var(--gold);
    color: var(--indigo);
}

.legal__title {
    margin-bottom: 10px;
}

.legal__meta {
    margin-bottom: 32px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
}

.legal__lead {
    padding: 20px 24px;
    border-left: 3px solid var(--gold);
    border-radius: 0 12px 12px 0;
    background: var(--ink-2);
    color: var(--white);
    font-size: 17px;
    line-height: 1.6;
}

.legal h2 {
    margin-top: 48px;
    margin-bottom: 14px;
    font-size: clamp(22px, 2.4vw, 28px);
}

.legal h3 {
    margin-top: 28px;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 18px;
}

.legal p {
    color: var(--white-70);
    font-size: 16px;
    line-height: 1.7;
}

.legal p+p,
.legal__list+p {
    margin-top: 16px;
}

.legal strong {
    color: var(--white);
}

.legal em {
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
}

.legal a:not(.btn):not(.legal__back) {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.legal__list li {
    position: relative;
    padding-left: 26px;
    color: var(--white-70);
    font-size: 16px;
    line-height: 1.65;
}

.legal__list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}

.legal__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 56px;
    padding: 28px;
    border: 1px solid var(--white-12);
    border-radius: 18px;
    background: var(--ink-2);
}

.legal__cta p {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.footer--simple {
    padding-block: 40px;
    border-top: 1px solid var(--white-08);
}

.footer--simple .footer__legal {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 32px;
}

/* --------------------------------------------------------------------------
   21. Reveal no scroll
   -------------------------------------------------------------------------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
    will-change: opacity, transform;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

[data-stagger]>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
    transition-delay: var(--d, 0ms);
}

[data-stagger].is-visible>* {
    opacity: 1;
    transform: none;
}

[data-appear] [data-appear-child] {
    opacity: 0;
    transform: translateY(24px);
    animation: appear-up .9s var(--ease-out) forwards;
}

[data-appear] [data-appear-child]:nth-child(1) {
    animation-delay: .15s;
}

[data-appear] [data-appear-child]:nth-child(2) {
    animation-delay: .28s;
}

[data-appear] [data-appear-child]:nth-child(3) {
    animation-delay: .41s;
}

.hero__content>[data-appear-child] {
    animation-delay: .58s;
}

@keyframes appear-up {
    to {
        opacity: 1;
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   22. Responsivo
   -------------------------------------------------------------------------- */
@media (max-width: 1199.98px) {
    :root {
        --section-y: 64px;
    }

    .dest-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero {
        height: 800px;
    }

    .stats__inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 32px;
    }

    .sobre__grid,
    .frota__grid {
        gap: 36px;
    }

    .footer__inner {
        gap: 40px;
    }

    .footer__brand {
        flex-basis: 340px;
    }

}

@media (max-width: 809.98px) {
    :root {
        --section-y: 56px;
        --gutter: 16px;
    }

    html {
        scroll-padding-top: 130px;
    }

    .navbar__logo img {
        width: 86px;
    }

    .navbar__phone {
        height: 38px;
        padding: 8px 14px;
        font-size: 14px;
        gap: 8px;
    }


    .offer-banner {
        padding: 12px 44px 12px 16px;
        font-size: 12px;
        gap: 8px;
    }

    .hero {
        height: auto;
        min-height: 620px;
        max-height: none;
        padding-block: 180px 90px;
    }

    .hero__dots {
        bottom: 24px;
    }

    .sobre__grid,
    .frota__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .sobre__photo {
        max-height: 340px;
    }

    .dest-grid,
    .gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gal-card {
        height: 170px;
    }

    /* tem de vir depois de .gal-card: mesma especificidade, ganha a última */
    .gal-card--feature {
        height: 100%;
    }

    .gallery__grid {
        grid-auto-rows: 170px;
    }

    .svc-card {
        width: 285px;
    }

    .ticker__track {
        gap: 20px;
    }

    .contact__actions .btn {
        width: 100%;
    }

    .footer {
        padding-block: 56px;
    }

    .footer__inner {
        flex-direction: column;
        gap: 48px;
    }

    .footer__brand,
    .contact {
        flex: 1 1 auto;
        max-width: none;
        width: 100%;
    }

    .brand-card {
        height: 440px;
    }

    .brand-card__panel {
        padding: 22px;
    }

    .brand-card__title {
        font-size: 22px;
    }

    /* valores longos ("Transamerica Comandatuba") não cabem em meia largura */
    .contact__details {
        flex-direction: column;
        gap: 20px;
    }

    .newsletter__box {
        min-height: 0;
        padding: 40px 20px;
        border-radius: 18px;
    }

    .cta-final__buttons .btn {
        width: 100%;
    }

    .wa-float {
        bottom: 18px;
        left: calc(100vw - 78px);
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 479.98px) {
    .dest-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .nav-drawer__list {
        flex-direction: column;
        gap: 2px;
    }

    .contact__details {
        gap: 20px 32px;
    }
}

/* --------------------------------------------------------------------------
   23. Movimento reduzido
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    [data-reveal],
    [data-stagger]>*,
    [data-appear] [data-appear-child] {
        opacity: 1 !important;
        transform: none !important;
    }

    .ticker__track {
        animation: none !important;
    }
}
