:root {

    --orange: #E85C2A;

    --orange-dark: #c9471d;

    --turquoise: #58B5B2;

    --turquoise-dark: #3c9996;

    --dark: #193333;

    --dark-soft: #284747;

    --cream: #f7faf9;

    --light: #eef7f6;

    --white: #ffffff;

    --text: #526464;

    --border: rgba(25, 51, 51, .12);

}


* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: "DM Sans", sans-serif;

    color: var(--dark);

    background: var(--white);

    overflow-x: hidden;

}


img {

    max-width: 100%;

    display: block;

}


a {

    color: inherit;

    text-decoration: none;

}


button,

input,

textarea {

    font-family: inherit;

}


.container {

    width: min(1180px, calc(100% - 40px));

    margin: auto;

}


.section-padding {

    padding: 120px 0;

}


/* =========================
   HEADER
========================= */


.site-header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 9999;

    background: #ffffff;

    box-shadow: 0 5px 25px rgba(25, 51, 51, .08);

    transition: .35s ease;

}


.site-header.scrolled {

    background: #ffffff;

    box-shadow: 0 8px 30px rgba(25, 51, 51, .14);

}


.header-content {

    height: 92px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    width: 95px;

}


.logo img {

    width: 100%;

    height: auto;

}


.main-nav {

    display: flex;

    align-items: center;

    gap: 30px;

}


.main-nav > a {

    color: var(--dark);

    font-size: 13px;

    font-weight: 600;

    transition: .3s ease;

}


.main-nav > a:hover {

    color: var(--orange);

}


.nav-button {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px 19px;

    border-radius: 6px;

    background: var(--orange);

    color: white !important;

}


.nav-button:hover {

    background: var(--turquoise);

}


.menu-toggle {

    display: none;

    width: 42px;

    height: 42px;

    border: none;

    border-radius: 6px;

    background: var(--turquoise);

    cursor: pointer;

}


.menu-toggle span {

    display: block;

    width: 20px;

    height: 2px;

    margin: 4px auto;

    background: white;

}


/* =========================
   BOTÕES
========================= */


.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-height: 52px;

    padding: 0 23px;

    border-radius: 6px;

    border: none;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition: .3s ease;

}


.button-orange {

    background: var(--orange);

    color: white;

}


.button-orange:hover {

    background: var(--orange-dark);

    transform: translateY(-3px);

}


.button-outline {

    border: 1px solid rgba(25, 51, 51, .25);

    color: var(--dark);

}


.button-outline:hover {

    background: var(--dark);

    color: white;

}


.button-dark {

    background: var(--dark);

    color: white;

}


.button-dark:hover {

    background: white;

    color: var(--dark);

}


/* =========================
   HERO
========================= */


.hero {

    position: relative;

    min-height: 780px;

    padding-top: 92px;

    overflow: hidden;

    background: var(--cream);

}


.hero-background-shape {

    position: absolute;

    top: -300px;

    right: -250px;

    width: 800px;

    height: 800px;

    border-radius: 50%;

    background: var(--turquoise);

    opacity: .12;

}


.hero-grid {

    position: relative;

    z-index: 2;

    min-height: 688px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;

}


.hero-content {

    padding-top: 40px;

}


.hero-label {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    color: var(--orange);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.label-dot {

    width: 9px;

    height: 9px;

    border-radius: 50%;

    background: var(--orange);

}


.hero h1 {

    font-family: "Plus Jakarta Sans", sans-serif;

    max-width: 650px;

    color: var(--dark);

    font-size: clamp(48px, 6vw, 80px);

    font-weight: 800;

    line-height: 1.02;

    letter-spacing: -3px;

}


.hero h1 span {

    display: block;

    color: var(--orange);

}


.hero p {

    max-width: 510px;

    margin: 28px 0 35px;

    color: var(--text);

    font-size: 16px;

    line-height: 1.8;

}


.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.hero-info {

    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 60px;

}


.hero-info-item {

    display: flex;

    flex-direction: column;

}


.hero-info-item strong {

    font-family: "Plus Jakarta Sans", sans-serif;

    color: var(--dark);

    font-size: 25px;

}


.hero-info-item span {

    color: var(--text);

    font-size: 11px;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.hero-info-line {

    width: 1px;

    height: 35px;

    background: var(--border);

}


/* =========================
   VÍDEO PRINCIPAL
========================= */


.hero-video-container {

    position: relative;

    width: 100%;

    height: 540px;

    overflow: visible;

    border-radius: 25px;

}


.hero-video-container::before {

    content: "";

    position: absolute;

    z-index: 0;

    top: 25px;

    right: -25px;

    bottom: -25px;

    left: 25px;

    border-radius: 25px;

    background: var(--turquoise);

}


.hero-video-container video {

    position: relative;

    z-index: 2;

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 25px;

}


.hero-video-overlay {

    position: absolute;

    z-index: 3;

    inset: 0;

    border-radius: 25px;

    pointer-events: none;

    background: linear-gradient(

        135deg,

        rgba(88, 181, 178, .12),

        rgba(25, 51, 51, .25)

    );

}


.hero-floating-card {

    position: absolute;

    z-index: 5;

    left: -30px;

    bottom: 35px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 16px 20px;

    border-radius: 10px;

    background: white;

    box-shadow: 0 20px 50px rgba(25, 51, 51, .18);

}


.floating-icon {

    width: 43px;

    height: 43px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--orange);

    color: white;

}


.hero-floating-card strong {

    display: block;

    font-size: 13px;

}


.hero-floating-card span {

    display: block;

    margin-top: 4px;

    color: var(--text);

    font-size: 11px;

}


.hero-bottom-shape {

    position: absolute;

    bottom: -1px;

    left: 0;

    width: 100%;

    height: 80px;

    background: white;

    clip-path: ellipse(60% 100% at 50% 100%);

}


/* =========================
   BENEFÍCIOS
========================= */


.benefits-section {

    position: relative;

    z-index: 5;

    margin-top: -10px;

}


.benefits-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-radius: 12px;

    background: white;

    box-shadow: 0 20px 50px rgba(25, 51, 51, .09);

}


.benefit-card {

    display: flex;

    gap: 18px;

    padding: 32px;

    border-right: 1px solid var(--border);

}


.benefit-card:last-child {

    border-right: none;

}


.benefit-icon {

    flex-shrink: 0;

    width: 48px;

    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--turquoise);

    color: white;

    font-size: 18px;

}


.benefit-card h3 {

    margin-bottom: 7px;

    font-size: 15px;

}


.benefit-card p {

    color: var(--text);

    font-size: 12px;

    line-height: 1.6;

}


/* =========================
   TÍTULOS
========================= */


.section-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;

}


.section-heading h2 {

    max-width: 650px;

    margin-top: 15px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1.05;

    letter-spacing: -2px;

}


.section-heading h2 span {

    color: var(--orange);

}


.section-heading > p {

    max-width: 380px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;

}


.section-tag {

    color: var(--orange);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.section-tag-light {

    color: var(--orange);

}


/* =========================
   SERVIÇOS
========================= */


.services-layout {

    display: grid;

    grid-template-columns: 1.4fr 1fr;

    grid-template-rows: 1fr 1fr;

    gap: 20px;

}


.service-card {

    position: relative;

    min-height: 310px;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    border-radius: 12px;

    background: var(--dark);

}


.service-card-large {

    grid-row: span 2;

    min-height: 640px;

}


.service-image {

    position: absolute;

    inset: 0;

}


.service-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(

        to top,

        rgba(25, 51, 51, .95),

        rgba(25, 51, 51, .1)

    );

}


.service-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s ease;

}


.service-card:hover .service-image img {

    transform: scale(1.07);

}


.service-content {

    position: relative;

    z-index: 2;

    padding: 30px;

    color: white;

}


.service-number {

    display: inline-block;

    margin-bottom: 13px;

    color: var(--orange);

    font-size: 12px;

    font-weight: 800;

}


.service-content h3 {

    max-width: 430px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 25px;

    line-height: 1.1;

}


.service-content p {

    max-width: 430px;

    margin: 13px 0 20px;

    color: rgba(255, 255, 255, .72);

    font-size: 13px;

    line-height: 1.7;

}


.service-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--orange);

    font-size: 12px;

    font-weight: 700;

}


/* =========================
   VÍDEO DA EMPRESA
========================= */


.video-section {

    color: white;

    background: var(--dark);

}


.video-grid {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    align-items: center;

    gap: 80px;

}


.video-content h2 {

    max-width: 500px;

    margin: 18px 0 25px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1.05;

    letter-spacing: -2px;

}


.video-content h2 span {

    color: var(--orange);

}


.video-content p {

    max-width: 430px;

    margin-bottom: 30px;

    color: rgba(255, 255, 255, .65);

    line-height: 1.8;

}


/* VÍDEO REAL */

.video-wrapper {

    height: 480px;

    overflow: hidden;

    border-radius: 16px;

    background: var(--turquoise);

}


.video-wrapper video {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

}


/* =========================
   SOBRE
========================= */


.about-section {

    background: var(--cream);

}


.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 100px;

}


.about-visual {

    position: relative;

    min-height: 550px;

}


.about-main-image {

    width: 85%;

    height: 500px;

    overflow: hidden;

    border-radius: 14px;

}


.about-main-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.about-logo-card {

    position: absolute;

    right: 0;

    bottom: 0;

    width: 180px;

    height: 180px;

    display: grid;

    place-items: center;

    padding: 20px;

    border-radius: 15px;

    background: white;

    box-shadow: 0 20px 50px rgba(25, 51, 51, .15);

}


.about-logo-card img {

    width: 100%;

}


.about-content h2 {

    margin: 18px 0 25px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.05;

    letter-spacing: -2px;

}


.about-content h2 span {

    display: block;

    color: var(--orange);

}


.about-content p {

    margin-bottom: 16px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;

}


.about-list {

    display: grid;

    gap: 15px;

    margin-top: 30px;

}


.about-list-item {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 14px;

    font-weight: 600;

}


.about-list-item span {

    width: 26px;

    height: 26px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--orange);

    color: white;

    font-size: 11px;

}


/* =========================
   FROTA
========================= */


.fleet-grid {

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 16px;

}


.fleet-item {

    height: 300px;

    overflow: hidden;

    border-radius: 12px;

}


.fleet-item-large {

    height: 420px;

}


.fleet-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s ease;

}


.fleet-item:hover img {

    transform: scale(1.08);

}


/* =========================
   CTA
========================= */


.cta-section {

    padding: 85px 0;

    color: white;

    background: var(--orange);

}


.cta-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.cta-content > div > span {

    display: block;

    margin-bottom: 10px;

    font-size: 13px;

    opacity: .85;

}


.cta-content h2 {

    max-width: 700px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(35px, 5vw, 58px);

    line-height: 1.05;

    letter-spacing: -2px;

}


.cta-content h2 strong {

    display: block;

    color: var(--dark);

}


/* =========================
   CONTATO
========================= */


.contact-section {

    background: var(--cream);

}


.contact-grid {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 100px;

}


.contact-details {

    display: grid;

    gap: 28px;

}


.contact-detail {

    display: flex;

    align-items: center;

    gap: 17px;

}


.contact-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--turquoise);

    color: white;

}


.contact-detail h3 {

    margin-bottom: 4px;

    font-size: 14px;

}


.contact-detail p {

    color: var(--text);

    font-size: 13px;

}


.contact-form {

    display: grid;

    gap: 15px;

}


.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

}


.contact-form input,

.contact-form textarea {

    width: 100%;

    padding: 17px;

    border: 1px solid var(--border);

    border-radius: 6px;

    outline: none;

    background: white;

}


.contact-form textarea {

    min-height: 150px;

    resize: vertical;

}


.contact-form input:focus,

.contact-form textarea:focus {

    border-color: var(--orange);

}


/* =========================
   FOOTER
========================= */


.footer {

    padding: 70px 0 25px;

    color: white;

    background: var(--dark);

}


.footer-top {

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 70px;

    padding-bottom: 50px;

    border-bottom: 1px solid rgba(255, 255, 255, .1);

}


.footer-brand img {

    width: 115px;

    padding: 7px;

    border-radius: 8px;

    background: white;

}


.footer-brand p {

    max-width: 300px;

    margin-top: 18px;

    color: rgba(255, 255, 255, .55);

    font-size: 13px;

    line-height: 1.7;

}


.footer-links {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;

}


.footer-links h3 {

    margin-bottom: 8px;

    color: var(--orange);

    font-size: 13px;

}


.footer-links a {

    color: rgba(255, 255, 255, .55);

    font-size: 13px;

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;

    color: rgba(255, 255, 255, .4);

    font-size: 11px;

}


/* =========================
   WHATSAPP
========================= */


.whatsapp-button {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 900;

    width: 58px;

    height: 58px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--orange);

    color: white;

    font-size: 26px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);

    transition: .3s ease;

}


.whatsapp-button:hover {

    transform: scale(1.1);

    background: var(--turquoise);

}


/* =========================
   RESPONSIVO
========================= */


@media (max-width: 850px) {


    .menu-toggle {

        display: block;

    }


    .main-nav {

        position: fixed;

        top: 92px;

        right: -100%;

        width: 280px;

        height: calc(100vh - 92px);

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        padding: 35px 25px;

        background: white;

        box-shadow: -10px 10px 30px rgba(25, 51, 51, .1);

        transition: .35s ease;

    }


    .main-nav.active {

        right: 0;

    }


    .hero-grid,

    .video-grid,

    .about-grid,

    .contact-grid {

        grid-template-columns: 1fr;

    }


    .hero-visual {

        max-width: 650px;

        margin: auto;

    }


    .benefits-grid {

        grid-template-columns: 1fr;

    }


    .benefit-card {

        border-right: none;

        border-bottom: 1px solid var(--border);

    }


    .benefit-card:last-child {

        border-bottom: none;

    }


    .services-layout {

        grid-template-columns: 1fr 1fr;

    }


    .service-card-large {

        grid-column: span 2;

        grid-row: auto;

        min-height: 450px;

    }


    .footer-top {

        grid-template-columns: 1fr 1fr;

    }

}


@media (max-width: 600px) {


    .container {

        width: calc(100% - 30px);

    }


    .section-padding {

        padding: 80px 0;

    }


    .header-content {

        height: 76px;

    }


    .main-nav {

        top: 76px;

        height: calc(100vh - 76px);

    }


    .logo {

        width: 82px;

    }


    .hero {

        padding-top: 76px;

    }


    .hero-grid {

        padding: 80px 0 100px;

    }


    .hero h1 {

        font-size: 50px;

    }


    .hero-video-container {

        height: 380px;

    }


    .hero-floating-card {

        left: 10px;

        bottom: 20px;

    }


    .section-heading {

        display: block;

    }


    .section-heading > p {

        margin-top: 20px;

    }


    .services-layout {

        grid-template-columns: 1fr;

    }


    .service-card-large {

        grid-column: auto;

        min-height: 400px;

    }


    .video-wrapper {

        height: 330px;

    }


    .about-visual {

        min-height: 390px;

    }


    .about-main-image {

        width: 90%;

        height: 360px;

    }


    .about-logo-card {

        width: 130px;

        height: 130px;

    }


    .fleet-grid {

        grid-template-columns: 1fr 1fr;

    }


    .fleet-item,

    .fleet-item-large {

        height: 210px;

    }


    .cta-content {

        display: block;

    }


    .cta-content .button {

        margin-top: 30px;

    }


    .form-row {

        grid-template-columns: 1fr;

    }


    .footer-top {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .footer-bottom {

        flex-direction: column;

    }

}