:root {
    --bg: #07131d;
    --bg-soft: #0d1d2a;
    --surface: rgba(255, 255, 255, 0.08);
    --surface-strong: rgba(255, 255, 255, 0.12);
    --text: #f7f4ef;
    --muted: rgba(247, 244, 239, 0.76);
    --accent: #f29b35;
    --accent-2: #d86f15;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 20%, rgba(242, 155, 53, 0.16), transparent 22%),
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.08), transparent 18%),
        linear-gradient(180deg, var(--bg) 0%, #0b1721 45%, #09111a 100%);
    color: var(--text);
    font-family: "Sora", sans-serif;
}

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

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

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.topbar__inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand img,
.footer img {
    width: clamp(150px, 18vw, 220px);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    padding: 0;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.04);
    cursor: pointer;
}

.nav-toggle__line {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #0f172a;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.site-nav a {
    color: #334155;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.22s ease, transform 0.22s ease;
}

.site-nav a:hover {
    color: #0f172a;
    transform: translateY(-1px);
}

.topbar__cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.topbar__cta {
    padding: 14px 20px;
    border: 1px solid rgba(216, 111, 21, 0.2);
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(216, 111, 21, 0.18);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 72px;
    background:
        linear-gradient(180deg, rgba(7, 19, 29, 0.38), rgba(7, 19, 29, 0.58)),
        url("../img/bg-hero.png") center center / cover no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(242, 155, 53, 0.10), transparent 36%),
        linear-gradient(180deg, transparent 0%, rgba(7, 19, 29, 0.14) 100%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.hero__copy {
    animation: fade-up 0.9s ease both;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: "Barlow", sans-serif;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin: 0;
}

h1 {
    max-width: 11ch;
    font-size: clamp(3.1rem, 7.8vw, 6.6rem);
}

.lead,
.section__text,
.quote p,
.card p,
.contact-card p,
.hero__list,
.hero__stat span,
.footer p {
    color: var(--muted);
}

.lead {
    max-width: 60ch;
    margin: 20px 0 0;
    font-size: 1.05rem;
    line-height: 1.85;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button {
    padding: 15px 22px;
    border: 1px solid transparent;
}

.button--primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #1a120a;
    box-shadow: 0 18px 40px rgba(216, 111, 21, 0.28);
}

.button--secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.18);
}

.hero__card,
.card,
.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero__card {
    display: none;
}

.hero__card-head {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(242, 155, 53, 0.16);
    color: #ffd19a;
    font-size: 0.82rem;
    font-weight: 700;
}

.badge--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

.hero__list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 14px;
    line-height: 1.6;
}

.hero__stat {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    gap: 8px;
}

.hero__stat strong {
    font-family: "Barlow", sans-serif;
    font-size: 2.8rem;
    line-height: 1;
    color: #fff;
}

.section {
    padding: 70px 0;
}

.section--light {
    background: #f5f7fb;
    color: #0f172a;
}

.section--light .eyebrow,
.section--light .section__head h2,
.section--light .section__text,
.section--light .why-card h3,
.section--light .why-card p,
.section--light .card h3,
.section--light .card p,
.section--light .contact-card strong,
.section--light .contact-card p {
    color: #0f172a;
}

.section--light .eyebrow {
    color: var(--accent-2);
}

.section--light .section__text,
.section--light .card p,
.section--light .why-card p {
    color: rgba(15, 23, 42, 0.72);
}

.section--light .card,
.section--light .why-card,
.section--light .contact-card {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(15, 23, 42, 0.08);
}

.section--services {
    position: relative;
    overflow: hidden;
    color: #f8fafc;
    background:
        linear-gradient(135deg, rgba(7, 19, 29, 0.92) 0 50%, rgba(245, 247, 251, 0.96) 50% 100%),
        url("../img/bg-servicos.png") center center / cover no-repeat;
}

.section--services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(7, 19, 29, 0.18);
    pointer-events: none;
}

.section--services .container {
    position: relative;
    z-index: 1;
}

.section--services .eyebrow {
    color: #ffd19a;
}

.section--services .section__head h2 {
    color: #ffffff;
    max-width: 20ch;
}

.section--services .section__text,
.section--services .section__eyebrow {
    color: rgba(255, 255, 255, 0.8);
}

.section--services .card {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(15, 23, 42, 0.08);
}

.section--services .card h3,
.section--services .card p {
    color: #0f172a;
}

.section--contact {
    position: relative;
    overflow: hidden;
    color: #f8fafc;
    background:
        linear-gradient(135deg, rgba(7, 19, 29, 0.92) 0 49.5%, rgba(245, 247, 251, 0.96) 49.5% 100%),
        url("../img/bg-hero.png") center center / cover no-repeat;
}

.section--contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(7, 19, 29, 0.22);
    pointer-events: none;
}

.section--contact .container {
    position: relative;
    z-index: 1;
}

.section--contact .eyebrow {
    color: #ffd19a;
}

.section--contact .section__head h2 {
    color: #ffffff;
    max-width: 18ch;
}

.section--contact .section__text {
    color: rgba(255, 255, 255, 0.78);
    max-width: 56ch;
}

.section--contact .contact-card {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(15, 23, 42, 0.08);
}

.section--contact .contact-card strong,
.section--contact .contact-card p {
    color: #0f172a;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: stretch;
    margin-top: 8px;
}

.contact-map {
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
    min-height: 360px;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
}

.contact-details {
    display: grid;
    gap: 22px;
    align-content: center;
    padding: 18px 6px;
}

.contact-line {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    align-items: center;
}

.contact-line__icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #0f4c63;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.contact-line__icon svg {
    width: 28px;
    height: 28px;
}

.contact-line p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.5;
    color: #0f172a;
}

.contact-line__numbers {
    display: grid;
    gap: 10px;
}

.contact-line__numbers p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.4;
    color: #0f172a;
}

.contact-link {
    color: #0f172a;
    text-decoration: none;
    font-size: 1.15rem;
    line-height: 1.45;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

.section__head {
    max-width: 760px;
    margin-bottom: 30px;
}

.section__head--services {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section__head h2 {
    font-size: clamp(1.47rem, 3.22vw, 2.87rem);
}

.section__head--services h2 {
    font-size: clamp(1.75rem, 3.64vw, 3.5rem);
}

.section__eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.24em;
}

.section__head--services .section__eyebrow {
    font-size: 1rem;
}

.section__head--services .section__head h2,
.section__head--services h2 {
    margin-left: auto;
    margin-right: auto;
    max-width: 19ch;
}

.section__text {
    margin: 14px 0 0;
    max-width: 62ch;
    line-height: 1.8;
}

.section__text--centered {
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section--about {
    padding-top: 24px;
}

.about {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 18px;
    align-items: start;
}

.about__copy,
.about__card {
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    border-radius: 28px;
}

.about__copy {
    padding: 32px;
}

.about__copy h2 {
    font-size: clamp(2.1rem, 4.3vw, 4rem);
    margin-bottom: 18px;
}

.about__copy p {
    margin: 0 0 14px;
    line-height: 1.85;
    color: var(--muted);
}

.about__cards {
    display: grid;
    gap: 18px;
}

.about__card {
    padding: 28px;
}

.about__card h3 {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.about__card p {
    margin: 0;
    line-height: 1.8;
    color: var(--muted);
}

.cards,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.card,
.contact-card {
    border-radius: 24px;
    padding: 28px;
}

.why-card {
    position: relative;
    border-radius: 24px;
    padding: 30px 28px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.why-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #1a120a;
    font-family: "Barlow", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
}

.why-card h3 {
    font-size: 1.7rem;
    margin-bottom: 14px;
}

.why-card p {
    margin: 0;
    line-height: 1.75;
    color: var(--muted);
}

.card h3,
.contact-card strong {
    font-size: 1.7rem;
    margin-bottom: 14px;
}

.card p,
.contact-card p {
    margin: 0;
    line-height: 1.75;
}

.section--fleet {
    padding-top: 10px;
}

.fleet-carousel {
    margin-top: 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
    padding: 18px 18px 14px;
}

.fleet-carousel__viewport {
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 14px;
    background: #0b1220;
}

.fleet-carousel__track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.fleet-carousel__slide {
    position: relative;
    flex: 0 0 100%;
    min-width: 100%;
    overflow: hidden;
    height: 100%;
    border-radius: 14px;
    background: var(--slide-bg) center center / cover no-repeat;
}

.fleet-carousel__slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(18px);
    transform: scale(1.08);
    opacity: 0.22;
}

.fleet-carousel__slide img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    max-width: none;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
}

.fleet-carousel__controls {
    position: absolute;
    inset: 50% 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 0 14px;
    transform: translateY(-50%);
    pointer-events: none;
}

.fleet-carousel__button {
    appearance: none;
    border: 0;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #111827;
    font-family: "Barlow", sans-serif;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
    pointer-events: auto;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.fleet-carousel__button:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
}

.fleet-carousel__button--prev {
    margin-left: 6px;
}

.fleet-carousel__button--next {
    margin-right: 6px;
}

.fleet-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.fleet-carousel__dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.22);
    cursor: pointer;
}

.fleet-carousel__dot.is-active {
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(242, 155, 53, 0.14);
}

.contact-card span {
    display: inline-flex;
    margin-bottom: 16px;
    color: #ffd19a;
    font-weight: 700;
}

.footer {
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding: 32px 0 36px;
    color: #0f172a;
}

.footer__inner {
    display: grid;
    justify-items: center;
    gap: 18px;
    text-align: center;
}

.footer__brand {
    display: grid;
    gap: 12px;
    justify-items: center;
}

.footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0f172a;
    color: #ffffff;
    transition: transform 0.22s ease, background-color 0.22s ease;
}

.footer__social a:hover {
    transform: translateY(-2px);
    background: #f29b35;
}

.footer__social svg {
    width: 20px;
    height: 20px;
}

.footer p {
    margin: 0;
    color: #475569;
}

.topbar__cta:hover,
.button:hover {
    transform: translateY(-2px);
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.32);
    transition: transform 0.22s ease, filter 0.22s ease;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

@media (max-width: 980px) {
    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        padding: 12px;
        margin: 0;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .site-nav a {
        display: block;
        padding: 14px 16px;
        border-radius: 12px;
        color: #334155;
        white-space: normal;
    }

    .site-nav .topbar__cta {
        margin-top: 8px;
        width: 100%;
    }

    .hero__content,
    .about,
    .why-grid,
    .cards,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 64px;
        background-position: center top;
    }

    .hero__copy {
        order: 1;
    }

    .hero__card {
        order: 2;
    }

    .about__cards {
        grid-template-columns: 1fr;
    }

    .fleet-carousel {
        padding: 12px 12px 14px;
        border-radius: 16px;
    }

    .fleet-carousel__slide {
        border-radius: 12px;
    }

    .fleet-carousel__controls {
        padding: 0 8px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 32px, 1180px);
    }

    .topbar__inner {
        min-height: 74px;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
    }

    .topbar__cta {
        padding: 12px 16px;
        font-size: 0.92rem;
    }

    .hero {
        padding: 42px 0 56px;
        background-position: center top;
    }

    .hero__card,
    .card,
    .contact-card,
    .about__copy,
    .about__card,
    .why-card,
    .fleet-carousel {
        border-radius: 22px;
        padding: 22px;
    }

    .fleet-carousel__viewport {
        aspect-ratio: 16 / 9;
        height: auto;
    }

    .fleet-carousel__button {
        width: 42px;
        height: 42px;
        font-size: 1.7rem;
    }

    .fleet-carousel__slide {
        border-radius: 12px;
    }

    .section {
        padding: 56px 0;
    }

    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__social {
        width: 100%;
    }

    .footer__social a {
        flex: 0 0 44px;
    }

    .section--contact {
        background:
            linear-gradient(135deg, rgba(7, 19, 29, 0.96) 0 54%, rgba(245, 247, 251, 0.98) 54% 100%),
            url("../img/bg-hero.png") center center / cover no-repeat;
    }

    .section--services {
        background:
            linear-gradient(135deg, rgba(7, 19, 29, 0.96) 0 54%, rgba(245, 247, 251, 0.98) 54% 100%),
            url("../img/bg-servicos.png") center center / cover no-repeat;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 260px;
        border-radius: 20px;
    }

    .contact-map iframe {
        min-height: 260px;
    }

    .contact-line {
        grid-template-columns: 48px 1fr;
    }

    .contact-line__icon {
        width: 48px;
        height: 48px;
    }

    .contact-line p,
    .contact-line__numbers p {
        font-size: 1.05rem;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
