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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", sans-serif;
    color: #334155;
    background: #f8fafc;
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}

section {
    scroll-margin-top: 50px;
}

/* =========================
   VARIÁVEIS
========================= */

:root {
    --primary: #FFA500;
    --primary-dark: #1e3a8a;
    --dark: #0f172a;
    --text: #334155;
    --light: #f8fafc;
    --white: #ffffff;

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

    --radius: 16px;
    --transition: .3s ease;
}

/* =========================
   UTILITÁRIOS
========================= */

.container {
    width: min(1200px, 90%);
    margin: auto;
    padding: 10px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-header p {
    max-width: 700px;
    margin: auto;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 16px;

    border-radius: 10px;

    font-weight: 600;

    transition: var(--transition);

    cursor: pointer;
}

.btn-primary {
    background: var(--primary-dark);
    color: white;
}

.btn-primary:hover {
    color: var(--primary-dark);
    background: var(--primary);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

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

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(15, 23, 42, 0.95);

    backdrop-filter: blur(10px);

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);

    /* Começa escondido */
    transform: translateY(-100%);

    /* Animação */
    transition: transform 0.4s ease;
}

.header.visible {
    transform: translateY(0);
}

.header-container {
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 100px;
}

.company-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-list a {
    color: white;
    font-weight: 500;
    transition: .3s;
}

.nav-list a:hover {
    color: #60a5fa;
}

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

.hero {
    display: flex;
    align-items: center;
    justify-content: center;


    position: relative;

    width: 100%;
    min-height: 100vh;

    overflow: hidden;

    background: #0f172a;

    color: white;
}

.hero-slide {
    position: relative;

    width: 100%;
    min-height: 100vh;
}

/* =========================
   IMAGEM DO HERO
========================= */

.hero-image {
    position: absolute;

    top: 0;
    right: 0;

    width: 100%;
    height: 100%;

    z-index: 1;

    overflow: hidden;
}


/* =============================
    IMAGENS DO CARROSSEL DO HERO
================================*/

.hero-slide-image {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    opacity: 0;

    transition: opacity 1.2s ease-in-out;

    animation: none;
    transform: none;
}


/* =================
    IMAGEM ATIVA 
===================*/

.hero-slide-image.active {
    opacity: 1;
}

/* ESCURECIMENTO DA IMAGEM */

.hero-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(90deg,
            rgba(15, 23, 42, 0.92) 0%,
            rgba(15, 23, 42, 0.70) 40%,
            rgba(15, 23, 42, 0.30) 75%,
            rgba(15, 23, 42, 0.20) 100%);

    z-index: 2;
}


/* ==================
    CONTEÚDO DO HERO 
====================*/

.hero-content {
    position: relative;

    z-index: 10;

    min-height: 100vh;

    display: flex;

    align-items: center;
}


/* ===========
    TEXTO 
=============*/

.hero-text {
    max-width: 650px;

    position: relative;

    z-index: 11;
}

.hero-subtitle {
    display: inline-block;

    color: #93c5fd;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 10px;
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 3.5rem);

    line-height: 1.05;

    color: white;

    margin: 15px 0;
}

.hero-description {
    max-width: 550px;

    font-size: 1.15rem;

    color: #e2e8f0;

    margin-bottom: 35px;
}

.hero-logo {
    height: 150px;
}


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

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* =========================
   DIFERENCIAIS
========================= */

.advantages {
    padding: 50px 0;
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.advantage-card {
    background: white;

    padding: 35px;

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    text-align: center;

    transition: .3s;
}

.advantage-card:hover {
    transform: translateY(-8px);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.advantage-card h3 {
    margin-bottom: 10px;
}

/* =========================
   ÁREAS DE ATENDIMENTO
========================= */

.service-areas {
    padding: 50px 0;
}

.service-areas-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 25px;
}

.service-areas-info h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.service-areas-info p {
    margin-bottom: 25px;
}

.dropdown {
    background: white;

    margin-bottom: 20px;

    border-radius: var(--radius);

    overflow: hidden;

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

.dropdown summary {
    padding: 22px;

    cursor: pointer;

    font-weight: 600;

    color: var(--dark);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 20px;

    padding: 20px;
}

.location-card {
    background: #f1f5f9;

    padding: 20px;

    border-radius: 12px;
}

.location-card h4 {
    margin-bottom: 8px;
}

/* =========================
   CALCULADORA - INUTILIZADA
========================= */

.cubage {
    padding: 50px 0;
    background: white;
}

.cubage-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin-bottom: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
}

.input-field {
    height: 55px;

    border: 1px solid #cbd5e1;

    border-radius: 10px;

    padding: 0 15px;
}

.input-field:focus {
    outline: none;
    border-color: var(--primary);
}

.cubage-result {
    text-align: center;
}

.result-card {
    width: 300px;

    margin: 10px auto;

    padding: 10px;

    border-radius: var(--radius);

    background: var(--dark);

    color: white;
}

.result-value {
    display: block;

    font-size: 2rem;

    margin-top: 10px;

    font-weight: 700;
}

/* =========================
   CONTATO
========================= */

.contact {
    padding: 50px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.contact-card {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;

    background: white;

    text-align: center;

    padding: 10px;

    border-radius: var(--radius);

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

.contact-avatar {
    width: 90px;
    height: 90px;

    border-radius: 50%;

    overflow: hidden;
}

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

.footer {
    background: var(--dark);
    color: white;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.footer-column h3 {
    margin-bottom: 20px;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #cbd5e1;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);

    margin-top: 50px;

    padding: 30px 0;

    text-align: center;
}

/* =========================
   CARROSSEL CARGA
========================= */

.cargo-carousel-section {
    background: #f8fafc;
    overflow: hidden;
}


/* =========================
   CABEÇALHO DA AREA DE CARGA
========================= */

.cargo-section-header {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;

    margin-bottom: 10px;

    color: #2563eb;

    font-size: 0.9rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cargo-section-header h2 {
    color: #0f172a;

    font-size: clamp(2rem, 4vw, 2.8rem);

    line-height: 1.15;

    margin-bottom: 15px;
}

.cargo-section-header p {
    color: #64748b;

    font-size: 1.05rem;

    max-width: 650px;

    margin: auto;
}


/* =========================
   CARROSSEL DA CARGA
========================= */

.cargo-carousel {
    position: relative;

    display: flex;

    align-items: center;

    width: 100%;

    margin-top: 20px;
}


/* ================
    ÁREA VISÍVEL
===================*/

.cargo-carousel-viewport {
    width: 100%;

    overflow: hidden;

    padding: 20px 5px 35px;
}


/* ===============
    TRACK
=================*/

.cargo-carousel-track {
    display: flex;

    gap: 25px;

    transition: transform 0.5s ease;

    will-change: transform;
}


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

.cargo-card {
    flex: 0 0 calc((100% - 50px) / 3);

    background: #ffffff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.08);

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

.cargo-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.14);
}


/* =========================
   IMAGEM
========================= */

.cargo-card-image {
    width: 100%;

    height: 220px;

    overflow: hidden;
}

.cargo-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.cargo-card:hover .cargo-card-image img {
    transform: scale(1.05);
}


/* =========================
   CONTEÚDO DO CARD DE CARGAS
========================= */

.cargo-card-content {
    padding: 15px;
}

.cargo-card-category {
    display: inline-block;

    margin-bottom: 8px;

    color: #2563eb;

    font-size: 0.75rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.cargo-card-content h3 {
    color: #0f172a;

    font-size: 1.35rem;

    margin-bottom: 5px;
}

.cargo-card-content p {
    color: #64748b;

    line-height: 1.6;
}


/* =========================
   BOTÕES DO CARROSSEL
========================= */

.cargo-carousel-button {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 10;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: #ffffff;

    color: #0f172a;

    font-size: 1.4rem;

    cursor: pointer;

    box-shadow:
        0 8px 25px rgba(15, 23, 42, 0.15);

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

.cargo-carousel-button:hover {
    background: #2563eb;

    color: #ffffff;

    transform:
        translateY(-50%) scale(1.05);
}

.cargo-carousel-prev {
    left: -24px;
}

.cargo-carousel-next {
    right: -24px;
}


/* =========================
   INDICADORES DOTS
========================= */

.cargo-carousel-dots {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 8px;

    margin-top: 10px;
}

.cargo-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #cbd5e1;

    cursor: pointer;

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

.cargo-dot.active {
    width: 24px;

    border-radius: 10px;

    background: var(--primary);
}


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

.cargo-carousel-cta {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 20px;

    margin-top: 45px;

    text-align: center;
}

.cargo-carousel-cta p {
    color: #475569;

    font-weight: 500;
}

/* =========================
   PÁGINA EM CONSTRUÇÃO
========================= */

.construction-page {
    min-height: 100vh;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background:
        linear-gradient(135deg,
            #0f172a,
            #1e3a8a);

    text-align: center;
}

.construction-container {
    max-width: 700px;
}

.construction-icon {
    font-size: 5rem;

    margin-bottom: 20px;
}

.construction-subtitle {
    display: inline-block;

    color: #93c5fd;

    font-size: 0.9rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 2px;

    margin-bottom: 15px;
}

.construction-title {
    color: #ffffff;

    font-size: clamp(2.5rem, 5vw, 4rem);

    line-height: 1.1;

    margin-bottom: 20px;
}

.construction-description {
    color: #cbd5e1;

    font-size: 1.1rem;

    line-height: 1.8;

    margin-bottom: 35px;
}

.construction-actions {
    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}

/* =========================
   LOCAÇÃO DE MESAS E CADEIRAS
========================= */

.rental-section {
    background: #ffffff;
}


/* CONTEÚDO */

.rental-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}


/* =========================
   IMAGEM
========================= */

.rental-image {
    height: 80%;

    position: relative;

    overflow: hidden;

    border-radius: 20px;

    box-shadow:
        0 15px 40px rgba(15, 23, 42, 0.12);
}

.rental-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.rental-image:hover img {
    height: 100%;
    transform: scale(1.03);
}


/* =========================
   TEXTO
========================= */

.rental-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);

    color: #0f172a;

    line-height: 1.15;

    margin-bottom: 20px;
}

.rental-text p {

    color: #64748b;

    font-size: 1rem;

    line-height: 1.8;

    margin-bottom: 20px;
}


/* =========================
   LISTA DE BENEFÍCIOS
========================= */

.rental-features {
    list-style: none;

    margin: 30px 0;

    padding: 0;
}

.rental-features li {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #334155;

    font-weight: 500;

    margin-bottom: 15px;
}


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

.rental-text .btn {
    margin-top: 10px;
}

/* ========================================
   PÁGINA SOBRE NÓS
======================================== */

.about-page {
    padding: 50px 0;
    background: #ffffff;
    min-height: 100vh;
}

.about-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 70px;
    align-items: center;
}

.about-text {
    max-width: 720px;
}

.about-text h1 {
    color: #0f172a;

    font-size: clamp(2.2rem, 4vw, 3rem);

    line-height: 1.2;

    margin: 5px 0 25px;
}

.about-text p {
    color: #64748b;

    font-size: 1rem;

    line-height: 1.8;

    margin-bottom: 18px;
}

.about-text strong {
    color: #334155;
    font-weight: 700;
}

.about-actions {
    margin-top: 30px;
}


/* ========================================
   NÚMEROS / DESTAQUES
======================================== */

.about-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.about-highlight {
    padding: 28px 20px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;

    border-radius: 16px;

    text-align: center;

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

.about-highlight:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(15, 23, 42, 0.08);
}

.about-highlight strong {
    display: block;

    color: #2563eb;

    font-size: 2.3rem;

    line-height: 1;

    margin-bottom: 10px;
}

.about-highlight span {
    color: #64748b;

    font-size: 0.9rem;

    font-weight: 500;
}

.privacy-page {
    padding: 50px 0;
}


/* ========================================
   MISSÃO
======================================== */

.mission-section {
    padding: 50px 0;

    background: #f8fafc;

    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.mission-content {
    max-width: 900px;

    margin: 0 auto;
}


.mission-header {
    text-align: center;

    margin-bottom: 45px;
}

.mission-header h2 {
    color: #0f172a;

    font-size: clamp(2rem, 4vw, 2.8rem);

    line-height: 1.2;

    margin: 5px 0 0;
}


.mission-main {
    text-align: center;

    margin-bottom: 45px;
}

.mission-main h3 {
    color: #2563eb;

    font-size: clamp(1.6rem, 3vw, 2.2rem);

    line-height: 1.3;

    margin-bottom: 20px;
}

.mission-main p {
    max-width: 700px;

    margin: 0 auto;

    color: #64748b;

    font-size: 1.05rem;

    line-height: 1.8;
}


/* ========================================
   DIFERENCIAL
======================================== */

.mission-differential {
    display: flex;

    align-items: center;

    gap: 25px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 16px;

    box-shadow:
        0 8px 25px rgba(15, 23, 42, 0.05);
}

.mission-icon {
    flex-shrink: 0;

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #eff6ff;

    border-radius: 50%;
}

.mission-icon img {
    width: 32px;
    height: 32px;

    object-fit: contain;
}

.mission-text h3 {
    color: #0f172a;

    font-size: 1.3rem;

    margin: 0 0 8px;
}

.mission-text p {
    color: #64748b;

    line-height: 1.7;

    margin: 0;
}


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

.about-cta {
    padding: 50px 0;

    background: #ffffff;
}

.about-cta-content {
    max-width: 700px;

    margin: 0 auto;

    text-align: center;
}

.about-cta-content h2 {
    color: #0f172a;

    font-size: clamp(2rem, 4vw, 2.8rem);

    line-height: 1.2;

    margin: 5px 0 15px;
}

.about-cta-content p {
    color: #64748b;

    line-height: 1.7;

    margin-bottom: 30px;
}

/* =========================
   PÁGINA DE OBRIGADO
========================= */

.thanks-page {
    min-height: 100vh;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    text-align: center;

    background:
        linear-gradient(135deg,
            #0f172a,
            #1e3a8a);
}

.thanks-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
}

.thanks-container .logo {
    width: 300px;
}

.thanks-icon {
    font-size: 5rem;

    margin-bottom: 20px;
}

.thanks-subtitle {
    display: inline-block;

    margin-bottom: 15px;

    color: #93c5fd;

    font-size: 0.9rem;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.thanks-title {
    color: white;

    font-size: clamp(2.5rem,
            5vw,
            4rem);

    line-height: 1.1;

    margin-bottom: 20px;
}

.thanks-description {
    max-width: 600px;

    margin: 0 auto 35px;

    color: #cbd5e1;

    line-height: 1.8;

    font-size: 1.1rem;
}

.thanks-actions {
    display: flex;

    justify-content: center;
}

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

@media (max-width: 992px) {

    .hero-content,
    .service-areas-content {
        grid-template-columns: 1fr;
    }

    .advantages-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-actions a,
    .nav-list {
        font-size: .8rem;
    }

    .cubage-form {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .rental-content {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .rental-image {
        max-width: 700px;

        margin: 0 auto;
    }

    .rental-text {
        text-align: center;
    }

    .rental-features li {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;

        gap: 45px;
    }

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

        margin: 0 auto;

        text-align: center;
    }

    .about-highlights {
        grid-template-columns: repeat(3, 1fr);

        max-width: 800px;

        width: 100%;

        margin: 0 auto;
    }

    .cargo-card {
        flex: 0 0 calc((100% - 25px) / 2);
    }

    .cargo-carousel-prev {
        left: -15px;
    }

    .cargo-carousel-next {
        right: -15px;
    }

}

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

@media (max-width: 768px) {

    section {
        padding: 30px 0;
    }

    .nav-menu {
        display: none;
    }

    .hero-content {
        min-height: 100%;
    }

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

    .contact-card {
        width: 90vw;
    }

    .advantages-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .advantage-card {
        padding: 10px;
        font-size: .8rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

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

    .hero-buttons .btn {
        width: 60%;
    }


    .construction-actions {
        flex-direction: column;
    }

    .construction-actions .btn {
        width: 100%;
    }

    .cargo-card {
        flex: 0 0 100%;
    }

    .cargo-carousel-button {
        width: 42px;
        height: 42px;

        font-size: 1.1rem;
    }

    .cargo-carousel-prev {
        left: 5px;
    }

    .cargo-carousel-next {
        right: 5px;
    }

    .cargo-carousel-viewport {
        padding-left: 10px;
        padding-right: 10px;
    }

    .cargo-carousel-cta {
        flex-direction: column;

        gap: 15px;
    }

    .cargo-card-image {
        height: 240px;
    }

    .about-text h1 {
        font-size: 2.2rem;
    }

    .about-text p {
        font-size: 0.98rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .mission-header {
        margin-bottom: 35px;
    }

    .mission-main {
        margin-bottom: 35px;
    }

    .mission-differential {
        flex-direction: column;

        text-align: center;

        padding: 25px;
    }

    .rental-section {
        padding: 70px 0;
    }

    .rental-image {
        display: none;
        border-radius: 16px;
    }

    .rental-text h2 {
        margin-bottom: 15px;
    }

    .rental-features {
        margin: 25px 0;
    }

}