:root {

    --navy-950: #03182b;
    --navy-900: #052542;
    --navy-800: #08385e;
    --navy-700: #0b4b79;

    --teal: #18bea6;
    --teal-dark: #0ca28c;
    --teal-soft: #ddf8f3;

    --green: #219b68;
    --green-soft: #e0f5eb;

    --white: #ffffff;

    --bg: #f4f7f9;
    --bg-soft: #f8fafb;

    --text: #102531;
    --text-soft: #687983;

    --border: #dce6ea;

    --shadow:
        0 18px 45px rgba(3, 24, 43, .09);

    --shadow-big:
        0 30px 80px rgba(3, 24, 43, .18);

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: "Inter", sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;

}


body.modal-open {

    overflow: hidden;

}


h1,
h2,
h3,
.logo-text {

    font-family: "Manrope", sans-serif;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
select {

    font: inherit;

}


button {

    cursor: pointer;

}


svg {

    display: block;

}


.container {

    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;

}


.section {

    padding: 95px 0;

}


.hidden {

    display: none !important;

}


/* =========================================================
   HEADER
========================================================= */

.header {

    position: sticky;

    top: 0;

    z-index: 1000;

    height: 78px;

    background:
        rgba(255, 255, 255, .96);

    border-bottom:
        1px solid rgba(3, 24, 43, .06);

    backdrop-filter:
        blur(18px);

}


.header-inner {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: flex;

    align-items: center;

    gap: 10px;

}


.logo-text {

    color: var(--navy-900);

    font-size: 29px;

    font-weight: 800;

    letter-spacing: -1.5px;

}


.logo-mark {

    position: relative;

    width: 26px;
    height: 26px;

}


.logo-mark span {

    position: absolute;

    width: 11px;
    height: 11px;

    border: 4px solid var(--teal);

}


.logo-mark span:nth-child(1) {

    left: 0;
    top: 0;

    border-right: 0;
    border-bottom: 0;

    border-radius:
        5px 0 0 0;

}


.logo-mark span:nth-child(2) {

    right: 0;
    top: 0;

    border-left: 0;
    border-bottom: 0;

    border-radius:
        0 5px 0 0;

}


.logo-mark span:nth-child(3) {

    left: 0;
    bottom: 0;

    border-right: 0;
    border-top: 0;

    border-radius:
        0 0 0 5px;

}


.logo-mark span:nth-child(4) {

    right: 0;
    bottom: 0;

    border-left: 0;
    border-top: 0;

    border-radius:
        0 0 5px 0;

}


/* =========================================================
   NAV
========================================================= */

.nav {

    display: flex;

    align-items: center;

    gap: 30px;

}


.nav a {

    position: relative;

    color: #52646f;

    font-size: 13px;

    font-weight: 600;

}


.nav a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 0;

    height: 2px;

    background: var(--teal);

    transition: .25s;

}


.nav a:hover {

    color: var(--navy-900);

}


.nav a:hover::after {

    width: 100%;

}


.header-actions {

    display: flex;

    align-items: center;

    gap: 12px;

}


.btn-client {

    height: 42px;

    padding: 0 16px;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background: var(--white);

    color: var(--navy-900);

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 11px;

    font-weight: 700;

    transition: .2s;

}


.btn-client:hover {

    border-color: var(--teal);

    color: var(--teal-dark);

}


.btn-client svg {

    width: 17px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

}


.mobile-menu {

    display: none;

    width: 40px;
    height: 40px;

    border: 0;

    background: transparent;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 4px;

}


.mobile-menu span {

    width: 20px;

    height: 2px;

    background: var(--navy-900);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    overflow: hidden;

    min-height: 660px;

    background:

        radial-gradient(
            circle at 78% 20%,
            rgba(24, 190, 166, .17),
            transparent 31%
        ),

        linear-gradient(
            135deg,
            #03182b 0%,
            #062b49 53%,
            #074566 100%
        );

}


.hero-grid {

    position: relative;

    z-index: 2;

    min-height: 660px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 465px;

    align-items: center;

    gap: 75px;

    padding-top: 65px;

    padding-bottom: 65px;

}


.hero-glow {

    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.06);

}


.glow-one {

    width: 550px;
    height: 550px;

    right: -220px;
    top: -250px;

}


.glow-two {

    width: 700px;
    height: 700px;

    left: -500px;
    bottom: -540px;

}


/* =========================================================
   HERO COPY
========================================================= */

.hero-copy {

    max-width: 650px;

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 7px 12px;

    border:
        1px solid rgba(255,255,255,.11);

    border-radius: 50px;

    background:
        rgba(255,255,255,.05);

    color: #d2e1e8;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

}


.status-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--teal);

    box-shadow:
        0 0 0 5px rgba(24,190,166,.12);

}


.hero h1 {

    max-width: 650px;

    margin-top: 22px;

    color: var(--white);

    font-size:
        clamp(44px, 5vw, 67px);

    line-height: 1.03;

    letter-spacing: -3px;

}


.hero h1 span {

    display: block;

    color: var(--teal);

}


.hero-copy > p {

    max-width: 570px;

    margin-top: 22px;

    color: #b7c8d1;

    font-size: 15px;

}


.hero-benefits {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 28px;

}


.hero-benefits div {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #d5e0e6;

    font-size: 10px;

}


.check {

    width: 21px;
    height: 21px;

    border-radius: 50%;

    background:
        rgba(24,190,166,.14);

    color: var(--teal);

    display: inline-flex;

    align-items: center;

    justify-content: center;

    font-size: 10px;

    font-weight: 800;

}


.hero-contact {

    display: inline-flex;

    flex-direction: column;

    margin-top: 35px;

}


.hero-contact span {

    color: #7993a1;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.hero-contact strong {

    color: var(--white);

    font-size: 14px;

}


/* =========================================================
   BOOKING CARD
========================================================= */

.booking-card {

    padding: 30px;

    border-radius: 23px;

    background: var(--white);

    box-shadow: var(--shadow-big);

}


.booking-header {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 18px;

    margin-bottom: 25px;

}


.small-tag {

    display: block;

    color: var(--teal-dark);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.booking-header h2 {

    margin-top: 3px;

    color: var(--navy-900);

    font-size: 22px;

}


.booking-header p {

    color: var(--text-soft);

    font-size: 10px;

}


.booking-icon {

    width: 47px;
    height: 47px;

    border-radius: 13px;

    background: var(--teal-soft);

    display: flex;

    align-items: center;

    justify-content: center;

}


.booking-icon svg {

    width: 24px;

    fill: none;

    stroke: var(--teal-dark);

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;

}


/* =========================================================
   FORM
========================================================= */

.field label {

    display: block;

    margin-bottom: 6px;

    color: #4c606b;

    font-size: 9px;

    font-weight: 700;

}


input,
select {

    width: 100%;

    height: 48px;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background: #fbfcfd;

    padding: 0 13px;

    color: var(--text);

    outline: 0;

    font-size: 11px;

    transition: .2s;

}


input:focus,
select:focus {

    background: var(--white);

    border-color: var(--teal);

    box-shadow:
        0 0 0 3px rgba(24,190,166,.08);

}


.input-icon {

    position: relative;

}


.input-icon svg {

    position: absolute;

    z-index: 3;

    left: 13px;

    top: 50%;

    transform:
        translateY(-50%);

    width: 16px;

    fill: none;

    stroke: var(--teal-dark);

    stroke-width: 1.8;

    pointer-events: none;

}


.input-icon select {

    padding-left: 41px;

}


.switch-row {

    display: flex;

    align-items: center;

    gap: 8px;

    margin: 14px 0 16px;

    color: #667780;

    font-size: 9px;

    cursor: pointer;

}


.switch-row input {

    display: none;

}


.switch-control {

    position: relative;

    width: 31px;
    height: 17px;

    border-radius: 50px;

    background: #dce4e8;

    transition: .2s;

}


.switch-control::after {

    content: "";

    position: absolute;

    left: 3px;
    top: 3px;

    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: var(--white);

    box-shadow:
        0 2px 5px rgba(0,0,0,.15);

    transition: .2s;

}


.switch-row input:checked + .switch-control {

    background: var(--teal);

}


.switch-row input:checked + .switch-control::after {

    transform:
        translateX(14px);

}


.date-grid {

    display: grid;

    grid-template-columns:
        1fr 115px;

    gap: 10px;

    margin-top: 14px;

}


.btn-search,
.btn-confirm {

    border: 0;

    background: var(--teal);

    color: var(--white);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    font-weight: 800;

    transition: .2s;

}


.btn-search {

    width: 100%;

    height: 52px;

    margin-top: 22px;

    border-radius: 11px;

    font-size: 11px;

    box-shadow:
        0 10px 24px rgba(24,190,166,.22);

}


.btn-search:hover,
.btn-confirm:hover {

    background: var(--teal-dark);

    transform:
        translateY(-1px);

}


.btn-search svg,
.btn-confirm svg {

    width: 17px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;

    stroke-linejoin: round;

}


/* =========================================================
   QUICK
========================================================= */

.quick-section {

    border-bottom:
        1px solid #edf1f3;

}


.quick-grid {

    min-height: 105px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.quick-item {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 20px 23px;

    border-right:
        1px solid #edf1f3;

}


.quick-item:first-child {

    padding-left: 0;

}


.quick-item:last-child {

    border-right: 0;

}


.quick-icon {

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border-radius: 11px;

    background: var(--teal-soft);

    display: flex;

    align-items: center;

    justify-content: center;

}


.quick-icon svg {

    width: 20px;

    fill: none;

    stroke: var(--teal-dark);

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;

}


.quick-item strong {

    display: block;

    color: var(--navy-900);

    font-size: 10px;

}


.quick-item span {

    display: block;

    color: var(--text-soft);

    font-size: 8px;

}


/* =========================================================
   SECTION TITLES
========================================================= */

.section-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 25px;

    margin-bottom: 30px;

}


.section-label {

    display: block;

    margin-bottom: 7px;

    color: var(--teal-dark);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.7px;

}


.section-heading h2,
.center-heading h2,
.contact-copy h2 {

    color: var(--navy-900);

    font-size:
        clamp(29px, 4vw, 41px);

    line-height: 1.15;

    letter-spacing: -1.4px;

}


.section-heading p,
.center-heading p,
.contact-copy p {

    margin-top: 8px;

    color: var(--text-soft);

    font-size: 11px;

}


.demo-badge {

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 7px 11px;

    border-radius: 50px;

    background: #fff5dc;

    color: #8d6b1f;

    font-size: 8px;

    font-weight: 700;

}


.demo-badge span {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #e3a92f;

}


/* =========================================================
   FLEET
========================================================= */

.fleet-section {

    background: var(--bg);

}


.filters {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 26px;

}


.filter {

    padding: 8px 16px;

    border:
        1px solid var(--border);

    border-radius: 50px;

    background: var(--white);

    color: #65757e;

    font-size: 9px;

    font-weight: 700;

    transition: .2s;

}


.filter:hover,
.filter.active {

    border-color: var(--teal);

    background: var(--teal);

    color: var(--white);

}


.fleet-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.fleet-card {

    overflow: hidden;

    border:
        1px solid rgba(3,24,43,.06);

    border-radius: 18px;

    background: var(--white);

    box-shadow:
        0 10px 30px rgba(3,24,43,.05);

    transition: .25s;

}


.fleet-card:hover {

    transform:
        translateY(-5px);

    box-shadow: var(--shadow);

}


.fleet-card.filter-hidden {

    display: none;

}


/* =========================================================
   IMAGENS
========================================================= */

.fleet-image {

    position: relative;

    height: 220px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        radial-gradient(
            circle at center,
            #ffffff 0%,
            #edf2f4 75%
        );

}


.fleet-image::after {

    content: "";

    position: absolute;

    left: 18%;
    right: 18%;

    bottom: 23px;

    height: 13px;

    border-radius: 50%;

    background:
        rgba(3,24,43,.10);

    filter:
        blur(7px);

}


.fleet-image.electric,
.fleet-image.agro {

    background:

        radial-gradient(
            circle at center,
            #ffffff 0%,
            #edf8f3 76%
        );

}


.fleet-image.boat {

    background:

        radial-gradient(
            circle at center,
            #ffffff 0%,
            #edf7fa 75%
        );

}


.fleet-image img {

    position: relative;

    z-index: 2;

    width: 96%;

    height: 190px;

    object-fit: contain;

    object-position: center;

    transition:
        transform .35s ease;

}


.fleet-card:hover
.fleet-image img {

    transform:
        scale(1.045);

}


.group-badge {

    position: absolute;

    z-index: 5;

    left: 14px;
    top: 14px;

    padding: 5px 9px;

    border-radius: 7px;

    background: var(--navy-800);

    color: var(--white);

    font-size: 8px;

    font-weight: 800;

}


.group-badge.green {

    background: var(--green);

}


.type-badge {

    position: absolute;

    z-index: 5;

    right: 14px;
    top: 14px;

    padding: 5px 9px;

    border-radius: 50px;

    background: var(--teal-soft);

    color: var(--teal-dark);

    font-size: 8px;

    font-weight: 700;

}


.electric-tag {

    background: var(--green-soft);

    color: var(--green);

}


/* =========================================================
   FLEET BODY
========================================================= */

.fleet-body {

    padding: 20px;

}


.fleet-category {

    color: var(--teal-dark);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

}


.green-text {

    color: var(--green);

}


.fleet-body h3 {

    margin-top: 2px;

    color: var(--navy-900);

    font-size: 17px;

    line-height: 1.3;

}


.fleet-body > p {

    min-height: 39px;

    margin-top: 7px;

    color: var(--text-soft);

    font-size: 9px;

}


.specs {

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 14px;

}


.specs span {

    padding: 5px 8px;

    border-radius: 7px;

    background: #f2f5f6;

    color: #61737c;

    font-size: 7px;

    font-weight: 600;

}


.price-area {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 15px;

    margin-top: 16px;

    padding: 15px 0;

    border-top:
        1px solid #edf1f3;

}


.price-area small {

    display: block;

    color: #84939a;

    font-size: 7px;

}


.price-area > div:first-child strong {

    color: var(--navy-900);

    font-size: 20px;

}


.price-area > div:first-child
strong span {

    color: #85939a;

    font-size: 8px;

    font-weight: 500;

}


.parcel {

    text-align: right;

}


.parcel strong {

    display: block;

    color: var(--teal-dark);

    font-size: 10px;

}


.reserve-button {

    width: 100%;

    height: 43px;

    border: 0;

    border-radius: 9px;

    background: var(--navy-900);

    color: var(--white);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    font-size: 9px;

    font-weight: 800;

    transition: .2s;

}


.reserve-button:hover {

    background: var(--teal);

    transform:
        translateY(-1px);

}


.reserve-button svg {

    width: 15px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;

    stroke-linejoin: round;

}


/* =========================================================
   HOW
========================================================= */

.how-section {

    background: var(--white);

}


.center-heading {

    max-width: 650px;

    margin:
        0 auto 45px;

    text-align: center;

}


.steps-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 17px;

}


.step-card {

    position: relative;

    padding: 26px;

    border:
        1px solid var(--border);

    border-radius: 16px;

}


.step-number {

    position: absolute;

    right: 17px;
    top: 10px;

    color: #e8edef;

    font-size: 29px;

    font-weight: 800;

}


.step-icon {

    width: 46px;
    height: 46px;

    margin-bottom: 16px;

    border-radius: 12px;

    background: var(--teal-soft);

    display: flex;

    align-items: center;

    justify-content: center;

}


.step-icon svg {

    width: 20px;

    fill: none;

    stroke: var(--teal-dark);

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;

}


.step-card h3 {

    color: var(--navy-900);

    font-size: 13px;

}


.step-card p {

    margin-top: 5px;

    color: var(--text-soft);

    font-size: 9px;

}


/* =========================================================
   BUSINESS
========================================================= */

.business-section {

    background:

        radial-gradient(
            circle at 80% 20%,
            rgba(24,190,166,.13),
            transparent 31%
        ),

        var(--navy-950);

}


.business-grid {

    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    align-items: center;

    gap: 70px;

}


.section-label.light {

    color: var(--teal);

}


.business-copy h2 {

    color: var(--white);

    font-size:
        clamp(34px, 5vw, 50px);

    line-height: 1.08;

    letter-spacing: -2px;

}


.business-copy > p {

    max-width: 570px;

    margin-top: 15px;

    color: #a9bcc6;

    font-size: 11px;

}


.business-list {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 13px;

    margin: 27px 0;

}


.business-list div {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #d4e1e6;

    font-size: 9px;

}


.business-list span {

    width: 21px;
    height: 21px;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        rgba(24,190,166,.14);

    color: var(--teal);

    display: flex;

    align-items: center;

    justify-content: center;

}


.btn-company {

    height: 48px;

    padding: 0 20px;

    border: 0;

    border-radius: 10px;

    background: var(--teal);

    color: var(--white);

    font-size: 9px;

    font-weight: 800;

}


.business-panel {

    padding: 35px;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 21px;

    background:
        rgba(255,255,255,.05);

}


.business-panel-label {

    color: var(--teal);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.business-panel h3 {

    margin-top: 5px;

    margin-bottom: 20px;

    color: var(--white);

    font-size: 23px;

}


.business-stat {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 14px 0;

    border-bottom:
        1px solid rgba(255,255,255,.06);

}


.business-stat:last-child {

    border-bottom: 0;

}


.business-stat strong {

    min-width: 65px;

    color: var(--teal);

    font-size: 27px;

}


.business-stat span {

    color: #a7bbc4;

    font-size: 9px;

}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    background: var(--bg);

}


.contact-box {

    padding: 45px;

    border-radius: 22px;

    background: var(--white);

    box-shadow: var(--shadow);

}


.contact-copy {

    max-width: 660px;

}


.contact-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;

    margin-top: 28px;

}


.contact-card {

    min-height: 90px;

    padding: 17px;

    border:
        1px solid var(--border);

    border-radius: 13px;

    display: flex;

    align-items: center;

    gap: 12px;

    transition: .2s;

}


a.contact-card:hover {

    border-color: var(--teal);

    transform:
        translateY(-2px);

}


.contact-icon {

    width: 41px;
    height: 41px;

    flex-shrink: 0;

    border-radius: 10px;

    background: var(--teal-soft);

    display: flex;

    align-items: center;

    justify-content: center;

}


.contact-icon svg {

    width: 19px;

    fill: none;

    stroke: var(--teal-dark);

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;

}


.contact-card small {

    display: block;

    color: #87959c;

    font-size: 7px;

}


.contact-card strong {

    color: var(--navy-900);

    font-size: 9px;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding-top: 60px;

    background: #021521;

    color: var(--white);

}


.footer-grid {

    display: grid;

    grid-template-columns:
        2fr 1fr 1.2fr 1.4fr;

    gap: 45px;

    padding-bottom: 45px;

}


.footer-logo .logo-text {

    color: var(--white);

}


.footer-description {

    max-width: 280px;

    margin-top: 15px;

    color: #8197a2;

    font-size: 9px;

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 7px;

}


.footer-column strong {

    margin-bottom: 5px;

    font-size: 9px;

}


.footer-column a,
.footer-column span {

    color: #7d929d;

    font-size: 8px;

}


.footer-column a:hover {

    color: var(--teal);

}


.footer-bottom {

    min-height: 60px;

    border-top:
        1px solid rgba(255,255,255,.07);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    color: #617985;

    font-size: 8px;

}


/* =========================================================
   MODAL
========================================================= */

.modal-overlay {

    position: fixed;

    inset: 0;

    z-index: 5000;

    padding: 20px;

    background:
        rgba(1, 16, 28, .78);

    backdrop-filter:
        blur(7px);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    visibility: hidden;

    transition: .25s;

}


.modal-overlay.active {

    opacity: 1;

    visibility: visible;

}


.reservation-modal {

    position: relative;

    width: min(680px, 100%);

    max-height: calc(100vh - 35px);

    overflow-y: auto;

    padding: 32px;

    border-radius: 22px;

    background: var(--white);

    box-shadow:
        0 40px 100px rgba(0,0,0,.28);

    transform:
        translateY(20px) scale(.98);

    transition: .25s;

}


.modal-overlay.active
.reservation-modal {

    transform:
        translateY(0) scale(1);

}


.modal-close {

    position: absolute;

    right: 17px;
    top: 12px;

    width: 35px;
    height: 35px;

    border: 0;

    background: transparent;

    color: #8b999f;

    font-size: 28px;

}


.reservation-header {

    padding-right: 35px;

}


.reservation-header h2 {

    margin-top: 4px;

    color: var(--navy-900);

    font-size: 25px;

}


.reservation-header p {

    color: var(--text-soft);

    font-size: 9px;

}


.reservation-vehicle {

    display: grid;

    grid-template-columns:
        170px 1fr;

    align-items: center;

    gap: 20px;

    margin-top: 22px;

    padding: 16px;

    border-radius: 15px;

    background: var(--bg);

}


.reservation-img {

    height: 105px;

    border-radius: 12px;

    background: var(--white);

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}


.reservation-img img {

    width: 100%;
    height: 100%;

    object-fit: contain;

}


.selected-group {

    color: var(--teal-dark);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

}


.reservation-vehicle h3 {

    margin-top: 3px;

    color: var(--navy-900);

    font-size: 19px;

}


.reservation-vehicle small {

    color: var(--text-soft);

    font-size: 8px;

}


.reservation-summary {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-top: 16px;

}


.reservation-summary > div {

    padding: 13px;

    border:
        1px solid var(--border);

    border-radius: 10px;

}


.reservation-summary small {

    display: block;

    color: #87959c;

    font-size: 7px;

}


.reservation-summary strong {

    display: block;

    margin-top: 3px;

    color: var(--navy-900);

    font-size: 9px;

}


.reservation-total {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin: 15px 0 22px;

    padding: 16px;

    border-radius: 12px;

    background: var(--navy-900);

}


.reservation-total small {

    display: block;

    color: #93a9b5;

    font-size: 7px;

}


.reservation-total span {

    display: block;

    color: #c0d0d8;

    font-size: 8px;

}


.reservation-total > strong {

    color: var(--teal);

    font-size: 23px;

}


.modal-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 11px;

}


.payment-select {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 9px;

}


.payment-option {

    position: relative;

    cursor: pointer;

}


.payment-option input {

    position: absolute;

    opacity: 0;

    pointer-events: none;

}


.payment-option > span {

    min-height: 70px;

    padding: 13px;

    border:
        1px solid var(--border);

    border-radius: 10px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    transition: .2s;

}


.payment-option input:checked
+ span {

    border-color: var(--teal);

    background: var(--teal-soft);

    box-shadow:
        0 0 0 2px rgba(24,190,166,.07);

}


.payment-option strong {

    color: var(--navy-900);

    font-size: 9px;

}


.payment-option small {

    color: var(--text-soft);

    font-size: 7px;

}


.btn-confirm {

    width: 100%;

    height: 48px;

    margin-top: 20px;

    border-radius: 10px;

    font-size: 10px;

}


.prototype-text {

    margin-top: 9px;

    color: #96a2a8;

    text-align: center;

    font-size: 7px;

}


/* =========================================================
   SUCCESS
========================================================= */

.success-modal {

    width: min(430px, 100%);

    padding: 36px;

    border-radius: 21px;

    background: var(--white);

    text-align: center;

    box-shadow:
        0 40px 100px rgba(0,0,0,.28);

    transform:
        scale(.96);

    transition: .25s;

}


.modal-overlay.active
.success-modal {

    transform:
        scale(1);

}


.success-icon {

    width: 62px;
    height: 62px;

    margin:
        0 auto 18px;

    border-radius: 50%;

    background: var(--teal-soft);

    color: var(--teal-dark);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 26px;

    font-weight: 800;

}


.success-modal h2 {

    margin-top: 5px;

    color: var(--navy-900);

    font-size: 23px;

}


.success-modal p {

    margin-top: 8px;

    color: var(--text-soft);

    font-size: 9px;

}


.success-code {

    margin: 20px 0;

    padding: 15px;

    border-radius: 11px;

    background: var(--bg);

}


.success-code small {

    display: block;

    color: #87959c;

    font-size: 7px;

}


.success-code strong {

    color: var(--navy-900);

    font-size: 18px;

    letter-spacing: 1px;

}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 1050px) {

    .nav {

        display: none;

    }


    .nav.active {

        position: absolute;

        top: 70px;

        left: 20px;
        right: 20px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 15px;

        border-radius: 14px;

        background: var(--white);

        box-shadow: var(--shadow);

    }


    .nav.active a {

        padding: 12px;

    }


    .mobile-menu {

        display: flex;

    }


    .hero-grid {

        grid-template-columns:
            1fr 420px;

        gap: 40px;

    }


    .fleet-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .steps-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .contact-grid {

        grid-template-columns: 1fr;

    }

}


@media (max-width: 820px) {

    .header {

        height: 70px;

    }


    .btn-client {

        display: none;

    }


    .hero-grid {

        grid-template-columns: 1fr;

    }


    .hero-copy {

        margin: 0 auto;

        text-align: center;

    }


    .hero-copy > p {

        margin-left: auto;

        margin-right: auto;

    }


    .hero-benefits {

        justify-content: center;

    }


    .booking-card {

        width:
            min(500px, 100%);

        margin: 0 auto;

    }


    .quick-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .quick-item {

        border-right: 0;

        border-bottom:
            1px solid #edf1f3;

    }


    .business-grid {

        grid-template-columns: 1fr;

    }


    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 600px) {

    .container {

        width:
            min(100% - 28px, 1180px);

    }


    .section {

        padding: 65px 0;

    }


    .logo-text {

        font-size: 24px;

    }


    .logo-mark {

        width: 22px;
        height: 22px;

    }


    .hero h1 {

        font-size: 39px;

        letter-spacing: -2px;

    }


    .hero-copy > p {

        font-size: 12px;

    }


    .hero-benefits {

        flex-direction: column;

        align-items: center;

    }


    .booking-card {

        padding: 22px;

    }


    .date-grid {

        grid-template-columns:
            1fr 105px;

    }


    .quick-grid {

        grid-template-columns: 1fr;

    }


    .section-heading {

        flex-direction: column;

        align-items: flex-start;

    }


    .fleet-grid {

        grid-template-columns: 1fr;

    }


    .fleet-image {

        height: 225px;

    }


    .fleet-image img {

        height: 195px;

    }


    .steps-grid {

        grid-template-columns: 1fr;

    }


    .business-list {

        grid-template-columns: 1fr;

    }


    .contact-box {

        padding: 25px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

    }


    .footer-bottom {

        flex-direction: column;

        justify-content: center;

        text-align: center;

        padding: 20px 0;

    }


    .reservation-modal {

        padding: 23px;

    }


    .reservation-vehicle {

        grid-template-columns: 1fr;

        text-align: center;

    }


    .reservation-img {

        width: 100%;

        height: 150px;

    }


    .reservation-summary {

        grid-template-columns: 1fr;

    }


    .modal-grid {

        grid-template-columns: 1fr;

    }


    .payment-select {

        grid-template-columns: 1fr;

    }


    .reservation-total {

        align-items: flex-start;

        flex-direction: column;

    }

}


/* =========================================================
   BOTÃO WHATSAPP
========================================================= */

.btn-whatsapp-reserva {

    width: 100%;
    height: 48px;

    margin-top: 10px;

    border: 0;

    border-radius: 10px;

    background: #25d366;

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

    transition: .2s;

}

.btn-whatsapp-reserva:hover {

    background: #1fbd5b;

    transform: translateY(-1px);

}
