/* =========================================================
   RESET & BASE
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --primary: #0e9488;
    --primary-light: #1fbfa0;
    --primary-dark: #0c3f63;
    --secondary: #1a6fa8;
    --dark: #0a2540;
    --gray: #5a6b73;
    --light-gray: #eef5f4;
    --white: #ffffff;

    --radius: 10px;

    --shadow:
        0 4px 20px rgba(10, 37, 64, 0.1);

    --transition:
        all 0.3s ease;

    --gradient-brand:
        linear-gradient(
            135deg,
            var(--primary-dark) 0%,
            var(--secondary) 45%,
            var(--primary) 100%
        );
}


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        'Segoe UI',
        Arial,
        sans-serif;

    color: var(--dark);

    line-height: 1.6;

    background: var(--white);

    overflow-x: hidden;
}


.container {
    width: 100%;
    max-width: 1140px;

    margin: 0 auto;

    padding: 0 20px;
}


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


ul {
    list-style: none;
}


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


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

.site-header {
    background: var(--white);

    box-shadow: var(--shadow);

    position: sticky;

    top: 0;

    z-index: 1000;
}


.header-content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 72px;

    padding: 10px 20px;
}


.logo {
    display: flex;

    align-items: center;

    flex-shrink: 0;
}


.logo img {
    height: 48px;

    width: auto;
}


/* =========================================================
   MENU DESKTOP
========================================================= */

.nav {
    position: relative;
}


.nav-links {
    display: flex;

    align-items: center;

    gap: 30px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.nav-links > li {
    position: relative;
}


.nav-links > li > a {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 8px 0;

    color: var(--dark);

    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    position: relative;

    transition: var(--transition);
}


.nav-links > li > a::after {
    content: '';

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    background: var(--primary);

    transition: var(--transition);
}


.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--primary);
}


.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
    width: 100%;
}


/* =========================================================
   BOTÃO HAMBÚRGUER
========================================================= */

.nav-toggle {
    display: none;

    width: 44px;

    height: 44px;

    padding: 8px;

    border: 0;

    background: transparent;

    cursor: pointer;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;
}


.nav-toggle span {
    display: block;

    width: 28px;

    height: 3px;

    background: var(--dark);

    border-radius: 3px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* =========================================================
   SUBMENU DESKTOP
========================================================= */

.nav-dropdown {
    position: relative;
}


.nav-dropdown-toggle {
    display: inline-flex !important;

    align-items: center;

    gap: 6px;
}


.submenu-arrow {
    display: inline-block;

    font-size: 11px;

    line-height: 1;

    transition:
        transform 0.25s ease;
}


.submenu {
    position: absolute;

    top: calc(100% + 8px);

    left: 0;

    width: auto;

    min-width: 200px;

    margin: 0;

    padding: 8px 0;

    list-style: none;

    background: #ffffff;

    border-radius: 10px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15);

    opacity: 0;

    visibility: hidden;

    transform: translateY(-8px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 2000;
}


.submenu li {
    display: block;

    width: 100%;

    margin: 0;

    padding: 0;
}


.submenu li a {
    display: block !important;

    width: 100%;

    padding: 12px 18px !important;

    color: var(--dark) !important;

    background: transparent !important;

    text-decoration: none;

    white-space: nowrap;

    line-height: 1.3 !important;

    border: 0 !important;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.submenu li a:hover {
    background: #f1f7fb !important;

    color: var(--primary) !important;
}


/* =========================================================
   ABRIR SUBMENU DESKTOP
========================================================= */

.nav-dropdown:hover .submenu {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


.nav-dropdown:hover .submenu-arrow {
    transform: rotate(180deg);
}


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

.hero {
    background: var(--gradient-brand);

    background-size: 250% 250%;

    animation:
        gradientShift 10s ease infinite;

    color: var(--white);

    padding: 100px 0;

    text-align: center;

    position: relative;

    overflow: hidden;
}


@keyframes gradientShift {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}


.hero h1 {
    font-size: 2.6rem;

    max-width: 800px;

    margin: 0 auto 20px;

    position: relative;

    z-index: 1;
}


.hero p {
    font-size: 1.15rem;

    max-width: 600px;

    margin: 0 auto 35px;

    opacity: 0.95;

    position: relative;

    z-index: 1;
}


/* =========================================================
   HERO BOTÕES
========================================================= */

.hero-buttons {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 14px;

    position: relative;

    z-index: 1;
}


.hero-buttons-top {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;
}


/* =========================================================
   FADE IN UP
========================================================= */

.fade-in-up {
    opacity: 0;

    transform: translateY(30px);

    animation:
        fadeInUp 0.8s ease forwards;
}


.fade-in-up.delay-1 {
    animation-delay: 0.25s;
}


.fade-in-up.delay-2 {
    animation-delay: 0.5s;
}


@keyframes fadeInUp {

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


/* =========================================================
   BOTÕES
========================================================= */

.btn {
    display: inline-block;

    padding: 14px 32px;

    border-radius: var(--radius);

    font-weight: 700;

    transition: var(--transition);

    cursor: pointer;

    border: 2px solid transparent;

    font-size: 1rem;
}


.btn-primary {
    background: var(--primary-light);

    color: var(--dark);
}


.btn-primary:hover {
    background: var(--primary);

    color: var(--white);

    transform: translateY(-2px);
}


.btn-outline {
    background: transparent;

    border: 2px solid var(--white);

    color: var(--white);
}


.btn-outline:hover {
    background: var(--white);

    color: var(--primary-dark);
}


.btn-orcamento {
    display: block;

    background-color: #f5c400;

    color: #ffffff;

    border: 2px solid #f5c400;
}


.btn-orcamento:hover {
    background-color: #d9aa00;

    border-color: #d9aa00;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   SEÇÕES
========================================================= */

.section {
    padding: 80px 0;
}


.section h2 {
    text-align: center;

    font-size: 2rem;

    margin-bottom: 10px;

    color: var(--primary-dark);
}


.section-subtitle {
    text-align: center;

    color: var(--gray);

    margin-bottom: 40px;
}


/* =========================================================
   ROTAS
========================================================= */

.routes {
    background: var(--light-gray);
}


.route-map {
    max-width: 1060px;

    margin: 28px auto 52px;

    padding: 24px 28px 30px;

    border:
        1px solid rgba(14, 148, 136, 0.16);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f4fbfa 100%
        );

    box-shadow:
        0 15px 35px rgba(10, 37, 64, 0.08);
}


.route-status {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 34px;

    margin-bottom: 32px;

    color: var(--primary-dark);

    font-weight: 700;

    text-align: center;
}


.route-status-truck {
    font-size: 1.65rem;
}


.route-line-wrapper {
    position: relative;

    min-height: 155px;

    margin: 0;

    padding: 0 3.8%;
}


.route-track {
    position: absolute;

    top: 57px;

    right: 3.8%;

    left: 3.8%;

    height: 35px;
}


.route-road-line {
    position: absolute;

    top: 14px;

    right: 0;

    left: 0;

    height: 8px;

    border-radius: 999px;

    background: #183b50;

    box-shadow:
        0 5px 0 rgba(10, 37, 64, 0.12);
}


.route-road-center {
    position: absolute;

    top: 17px;

    right: 0;

    left: 0;

    height: 3px;

    background:
        repeating-linear-gradient(
            to right,
            #f7c948 0 22px,
            transparent 22px 38px
        );
}


.route-truck {
    position: absolute;

    top: -17px;

    left: 0;

    z-index: 4;

    display: grid;

    width: 48px;

    height: 48px;

    place-items: center;

    border-radius: 50%;

    background: var(--white);

    box-shadow:
        0 5px 16px rgba(10, 37, 64, 0.2);

    font-size: 1.7rem;

    transform: translateX(-50%);

    animation:
        driveTruck 11s linear infinite;
}


@keyframes driveTruck {

    0%,
    3% {
        left: 0%;
    }

    17% {
        left: 20%;
    }

    36% {
        left: 40%;
    }

    55% {
        left: 60%;
    }

    74% {
        left: 80%;
    }

    94%,
    100% {
        left: 100%;
    }

}


.route-stops {
    position: absolute;

    top: 0;

    right: 3.8%;

    bottom: 0;

    left: 3.8%;

    display: flex;

    justify-content: space-between;

    padding: 0;

    list-style: none;
}


.route-stop {
    position: relative;

    display: flex;

    width: 15%;

    flex-direction: column;

    align-items: center;

    color: var(--gray);

    text-align: center;

    transition: var(--transition);
}


.route-stop-marker {
    position: absolute;

    top: 62px;

    z-index: 3;

    width: 22px;

    height: 22px;

    border: 5px solid var(--white);

    border-radius: 50%;

    background: var(--primary);

    box-shadow:
        0 0 0 2px var(--primary);

    transition: var(--transition);
}


.route-stop-name {
    margin-top: 102px;

    color: var(--primary-dark);

    font-weight: 800;

    line-height: 1.2;

    white-space: nowrap;
}


.route-stop-label {
    margin-top: 3px;

    color: var(--gray);

    font-size: 0.72rem;

    text-transform: uppercase;

    letter-spacing: 0.06em;
}


.route-stop.is-active {
    transform: translateY(-5px);
}


.route-stop.is-active .route-stop-marker {
    background: #f7c948;

    box-shadow:
        0 0 0 3px var(--primary),
        0 0 18px rgba(247, 201, 72, 0.75);
}


.route-stop.is-active .route-stop-name {
    color: var(--primary);
}


.route-stop.is-passed .route-stop-marker {
    background: var(--primary-light);
}


.route-stop.is-passed .route-stop-label {
    color: var(--primary);
}


/* =========================================================
   ROUTES GRID
========================================================= */

.routes-grid {
    display: grid;

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

    gap: 30px;

    margin-top: 30px;
}


.route-card {
    background: var(--white);

    padding: 30px;

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    text-align: center;

    transition: var(--transition);

    border-top:
        3px solid var(--primary);
}


.route-card:hover {
    transform: translateY(-5px);
}


.route-card h3 {
    color: var(--primary-dark);

    margin-bottom: 10px;
}


/* =========================================================
   ANIMAÇÃO AO ROLAR
========================================================= */

.animate-on-scroll {
    opacity: 0;

    transform: translateY(40px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}


.animate-on-scroll.visible {
    opacity: 1;

    transform: translateY(0);
}


.animate-on-scroll.delay-1 {
    transition-delay: 0.15s;
}


.animate-on-scroll.delay-2 {
    transition-delay: 0.3s;
}


/* =========================================================
   FEATURES
========================================================= */

.features-grid {
    display: grid;

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

    gap: 24px;

    margin-top: 35px;
}


.feature-card {
    padding: 30px 24px;

    text-align: center;

    background: #ffffff;

    border-radius: 16px;

    border:
        1px solid #e5e5e5;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.feature-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.14);
}


.feature-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 70px;

    height: 70px;

    margin: 0 auto 18px;

    font-size: 36px;

    background: #e9fff1;

    border-radius: 50%;
}


.feature-card h3 {
    margin-bottom: 12px;

    color: #1d1d1d;
}


.feature-card p {
    margin: 0;

    color: #666;

    line-height: 1.6;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    background:
        linear-gradient(
            135deg,
            #0a2540 0%,
            #0c3f63 55%,
            #126b82 100%
        );

    color: var(--white);

    text-align: center;

    padding: 70px 20px;

    position: relative;

    overflow: hidden;
}


.cta::before,
.cta::after {
    content: '';

    position: absolute;

    border-radius: 50%;

    background:
        rgba(31, 191, 160, 0.12);

    pointer-events: none;
}


.cta::before {
    width: 260px;

    height: 260px;

    top: -150px;

    left: -80px;
}


.cta::after {
    width: 320px;

    height: 320px;

    bottom: -210px;

    right: -100px;
}


.cta .container {
    position: relative;

    z-index: 1;
}


.cta h2 {
    margin-bottom: 28px;

    font-size: 1.9rem;

    color: var(--white);
}


.eyebrow {
    margin-bottom: 8px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}


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

.page-header {
    background: var(--gradient-brand);

    color: var(--white);

    padding: 60px 0;

    text-align: center;
}


.page-header h1 {
    font-size: 2.2rem;

    margin-bottom: 10px;
}


/* =========================================================
   TRACKING
========================================================= */

.tracking-title {
    text-align: center;

    color: var(--primary-dark);

    margin-bottom: 15px;
}


.tracking-desc {
    text-align: center;

    color: var(--gray);

    max-width: 650px;

    margin: 0 auto 35px;
}


.tracking-iframe-wrapper {
    width: 100%;

    max-width: 1100px;

    height: 900px;

    margin: 0 auto;

    overflow: auto;

    border:
        1px solid #d8ece9;

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    background: var(--white);
}


.tracking-iframe-wrapper iframe {
    display: block;

    width: 100%;

    height: 900px;

    min-height: 900px;

    border: 0;

    background: var(--white);
}


.tracking-fallback {
    text-align: center;

    margin-top: 30px;
}


.tracking-fallback p {
    color: var(--gray);

    margin-bottom: 15px;

    font-size: 1rem;
}


.tracking-fallback a {
    color: var(--white);
}


.tracking-fallback a.btn-mobile-tracking {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: var(--primary);

    color: var(--white) !important;

    padding: 16px 36px;

    border-radius: var(--radius);

    font-weight: 700;

    font-size: 1.05rem;

    transition: var(--transition);

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


.tracking-fallback a.btn-mobile-tracking:hover {
    background: var(--primary-light);

    color: var(--white) !important;

    transform: translateY(-2px);
}


.btn-mobile-tracking svg {
    fill: var(--white);

    flex-shrink: 0;
}


/* =========================================================
   LOGIN
========================================================= */

.login-box {
    max-width: 420px;

    margin: 0 auto;

    background: var(--light-gray);

    padding: 40px;

    border-radius: var(--radius);

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


.login-box label {
    display: block;

    margin-bottom: 8px;

    font-weight: 600;

    margin-top: 15px;

    color: var(--primary-dark);
}


.login-box input {
    width: 100%;

    padding: 12px;

    border:
        1px solid #cfe3e0;

    border-radius: var(--radius);

    font-size: 1rem;
}


.login-box input:focus {
    outline: none;

    border-color: var(--primary);
}


.login-box button {
    width: 100%;

    margin-top: 25px;
}


.login-message {
    margin-top: 15px;

    text-align: center;

    font-weight: 600;

    color: var(--secondary);
}


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

.contact-grid {
    display: grid;

    grid-template-columns:
        1fr 1.5fr;

    gap: 50px;
}


.contact-info h2,
.contact-form-box h2 {
    margin-bottom: 20px;

    color: var(--primary-dark);
}


.contact-info p {
    margin-bottom: 20px;
}


.contact-info a {
    color: var(--primary);

    font-weight: 600;
}


.contact-form-box form {
    display: flex;

    flex-direction: column;

    gap: 6px;
}


.contact-form-box label {
    font-weight: 600;

    margin-top: 12px;

    color: var(--primary-dark);
}


.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    padding: 12px;

    border:
        1px solid #cfe3e0;

    border-radius: var(--radius);

    font-size: 1rem;

    font-family: inherit;
}


.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
    outline: none;

    border-color: var(--primary);
}


.contact-form-box button {
    margin-top: 20px;
}


.form-message {
    margin-top: 15px;

    font-weight: 600;

    color: var(--primary-dark);
}


/* =========================================================
   ABOUT
========================================================= */

.about-content {
    max-width: 800px;

    margin: 0 auto;
}


.about-logo {
    height: 140px;

    width: auto;

    margin: 0 auto 30px;

    display: block;
}


.about-content h2 {
    text-align: left;

    margin-bottom: 25px;

    color: var(--primary-dark);
}


.about-content p {
    margin-bottom: 20px;

    color: var(--gray);

    text-align: justify;
}


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

.footer {
    background: var(--dark);

    color: var(--white);

    padding: 40px 0;
}


.footer-content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 20px;
}


.footer-logo img {
    height: 60px;

    width: auto;
}


.footer-info p {
    font-size: 0.9rem;

    opacity: 0.85;

    margin-bottom: 5px;
}


.footer-info a {
    color: inherit;
}


/* =========================================================
   BOTÃO WHATSAPP RODAPÉ
========================================================= */

.footer-whatsapp-link {
    border: 0;

    padding: 0;

    color: inherit;

    background: transparent;

    cursor: pointer;

    font: inherit;

    text-decoration: underline;
}


/* =========================================================
   WHATSAPP FLUTUANTE
========================================================= */

.whatsapp-float {
    position: fixed;

    right: 20px;

    bottom: 20px;

    width: 60px;

    height: 60px;

    background: #25D366;

    border: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3);

    z-index: 9999;

    transition: var(--transition);

    cursor: pointer;
}


.whatsapp-float:hover {
    transform: scale(1.1);
}


.whatsapp-float img {
    width: 32px;

    height: 32px;

    object-fit: contain;
}


/* =========================================================
   INSTAGRAM FLUTUANTE
========================================================= */

.instagram-float {
    position: fixed;

    left: 20px;

    bottom: 20px;

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    border-radius: 50%;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.25);

    z-index: 9999;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.instagram-float img {
    width: 34px;

    height: 34px;

    object-fit: contain;
}


.instagram-float:hover {
    transform: scale(1.10);

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.30);
}


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

.whatsapp-modal {
    display: none;

    position: fixed;

    z-index: 99999;

    inset: 0;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background:
        rgba(0, 0, 0, 0.65);
}


.whatsapp-modal.active {
    display: flex;
}


/* =========================================================
   CAIXA DO MODAL
========================================================= */

.whatsapp-modal-content {
    position: relative;

    width: 100%;

    max-width: 500px;

    max-height: 90vh;

    overflow-y: auto;

    padding: 30px;

    background: #ffffff;

    border-radius: 16px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.25);
}


.whatsapp-modal-content h2 {
    margin: 0 35px 8px 0;

    color: #222;
}


.whatsapp-modal-content > p {
    margin-bottom: 22px;

    color: #666;
}


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

.whatsapp-modal-close {
    position: absolute;

    top: 12px;

    right: 16px;

    border: 0;

    background: transparent;

    color: #555;

    cursor: pointer;

    font-size: 32px;

    line-height: 1;
}


/* =========================================================
   OPÇÕES DE CIDADES
========================================================= */

.whatsapp-city-options {
    display: grid;

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

    gap: 12px;
}


.whatsapp-city-options a {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px;

    color: #168a43;

    background: #e9fff1;

    border:
        1px solid #25d366;

    border-radius: 8px;

    font-weight: bold;

    text-decoration: none;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.whatsapp-city-options a:hover {
    background: #caffda;

    transform: translateY(-2px);
}


.whatsapp-city-options img {
    width: 25px;

    height: 25px;

    object-fit: contain;
}


/* =========================================================
   RESPONSIVE - 900px
========================================================= */

@media (max-width: 900px) {

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


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


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

}


/* =========================================================
   RESPONSIVE - MENU MOBILE
========================================================= */

@media (max-width: 768px) {


    /* -----------------------------------------------------
       HEADER
    ----------------------------------------------------- */

    .site-header {
        position: sticky;

        top: 0;

        z-index: 10000;
    }


    .header-content {
        min-height: 68px;

        padding:
            10px 15px;
    }


    .logo img {
        height: 44px;
    }


    /* -----------------------------------------------------
       BOTÃO HAMBÚRGUER
    ----------------------------------------------------- */

    .nav-toggle {
        display: flex;

        position: relative;

        z-index: 30001;
    }


    /* -----------------------------------------------------
       MENU PRINCIPAL
    ----------------------------------------------------- */

    .nav-links {
        position: absolute;

        top: calc(100% + 1px);

        right: 0;

        left: auto;

        width: 100vw;

        max-width: 100vw;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        margin: 0;

        padding: 0;

        background: var(--white);

        box-shadow:
            0 10px 25px rgba(0, 0, 0, 0.15);

        max-height: 0;

        overflow: hidden;

        opacity: 0;

        visibility: hidden;

        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            visibility 0.25s ease;

        z-index: 30000;
    }


    /* MENU ABERTO */

    .nav-links.active {
        max-height: 600px;

        opacity: 1;

        visibility: visible;

        overflow-y: auto;
    }


    /* -----------------------------------------------------
       ITENS DO MENU
    ----------------------------------------------------- */

    .nav-links > li {
        width: 100%;

        border-top:
            1px solid #eeeeee;
    }


    .nav-links > li:first-child {
        border-top: 0;
    }


    .nav-links > li > a {
        display: flex;

        width: 100%;

        padding: 16px 22px;

        color: var(--dark);

        font-weight: 600;

        justify-content: space-between;
    }


    .nav-links > li > a::after {
        display: none;
    }


    .nav-links > li > a:hover,
    .nav-links > li > a.active {
        color: var(--primary);

        background: #f5faf9;
    }


    /* -----------------------------------------------------
       ÁREA DO COLABORADOR
    ----------------------------------------------------- */

    .nav-dropdown {
        display: block;

        width: 100%;
    }


    .nav-dropdown-toggle {
        width: 100% !important;

        display: flex !important;

        align-items: center !important;

        justify-content: space-between !important;

        padding:
            16px 22px !important;

        cursor: pointer;
    }


    .submenu-arrow {
        font-size: 12px;

        margin-left: auto;

        transition:
            transform 0.25s ease;
    }


    /* -----------------------------------------------------
       SUBMENU MOBILE
    ----------------------------------------------------- */

    .submenu {
        position: static;

        width: 100%;

        min-width: 0;

        margin: 0;

        padding: 0;

        background: #f4f8f7;

        border-radius: 0;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        display: none;

        transition: none;
    }


    /* IMPORTANTE:
       o hover não abre o submenu no celular */

    .nav-dropdown:hover .submenu {
        opacity: 1;

        visibility: visible;

        transform: none;

        display: none;
    }


    /* SUBMENU ABERTO PELO JAVASCRIPT */

    .nav-dropdown.submenu-open .submenu {
        display: block;
    }


    .nav-dropdown.submenu-open .submenu-arrow {
        transform: rotate(180deg);
    }


    .nav-dropdown.submenu-open > .nav-dropdown-toggle {
        color: var(--primary);

        background: #f5faf9;
    }


    /* -----------------------------------------------------
       LINKS DO SUBMENU
    ----------------------------------------------------- */

    .submenu li {
        width: 100%;

        border-top:
            1px solid rgba(14, 148, 136, 0.12);
    }


    .submenu li a {
        display: flex !important;

        width: 100%;

        padding:
            13px 22px 13px 42px !important;

        color:
            var(--primary-dark) !important;

        background:
            #f4f8f7 !important;

        font-size: 0.95rem;

        white-space: normal;
    }


    .submenu li a:hover {
        background:
            #e8f3f1 !important;

        color:
            var(--primary) !important;
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .hero {
        padding:
            70px 0;
    }


    .hero h1 {
        font-size: 1.9rem;
    }


    .hero p {
        font-size: 1rem;
    }


    /* -----------------------------------------------------
       ROTAS
    ----------------------------------------------------- */

    .route-map {
        margin-right: 10px;

        margin-left: 10px;

        padding:
            22px 10px 25px;
    }


    .route-status {
        margin-bottom: 22px;

        font-size: 0.84rem;
    }


    .route-line-wrapper {
        min-height: 138px;

        padding:
            0 2%;
    }


    .route-track {
        top: 50px;

        right: 2%;

        left: 2%;
    }


    .route-stops {
        right: 2%;

        left: 2%;
    }


    .route-stop-marker {
        top: 55px;

        width: 17px;

        height: 17px;

        border-width: 4px;
    }


    .route-stop-name {
        margin-top: 91px;

        font-size: 0.65rem;

        white-space: normal;
    }


    .route-stop-label {
        font-size: 0.56rem;
    }


    .route-truck {
        width: 40px;

        height: 40px;

        font-size: 1.4rem;
    }


    /* -----------------------------------------------------
       TRACKING
    ----------------------------------------------------- */

    .tracking-iframe-wrapper {
        height: 950px;
    }


    .tracking-iframe-wrapper iframe {
        height: 950px;

        min-height: 950px;
    }


    .btn-mobile-tracking {
        width: 100%;

        max-width: 340px;

        padding:
            18px 20px;

        font-size: 1.1rem;
    }


    /* -----------------------------------------------------
       FEATURES
    ----------------------------------------------------- */

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


    /* -----------------------------------------------------
       FOOTER
    ----------------------------------------------------- */

    .footer-content {
        flex-direction: column;

        text-align: center;
    }


    /* -----------------------------------------------------
       MODAL
    ----------------------------------------------------- */

    .whatsapp-modal-content {
        max-width: 95vw;
    }

}


/* =========================================================
   RESPONSIVE - HERO BOTÕES
========================================================= */

@media (max-width: 600px) {

    .hero-buttons-top {
        flex-direction: column;

        width: 100%;
    }


    .hero-buttons-top .btn {
        width: 100%;

        max-width: 300px;

        text-align: center;
    }


    .btn-orcamento {
        width: 100%;

        max-width: 300px;

        text-align: center;
    }

}


/* =========================================================
   RESPONSIVE - WHATSAPP MODAL
========================================================= */

@media (max-width: 500px) {

    .whatsapp-modal {
        padding: 15px;
    }


    .whatsapp-modal-content {
        padding:
            25px 18px;

        max-height: 92vh;
    }


    .whatsapp-city-options {
        grid-template-columns: 1fr;
    }


    .whatsapp-float {
        right: 15px;

        bottom: 15px;

        width: 56px;

        height: 56px;
    }


    .whatsapp-float img {
        width: 30px;

        height: 30px;
    }


    .instagram-float {
        left: 15px;

        bottom: 15px;

        width: 54px;

        height: 54px;
    }


    .instagram-float img {
        width: 32px;

        height: 32px;
    }

}