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

:root {
    --font-montserrat: 'Montserrat', sans-serif;
    --font-orbitron: 'Orbitron', sans-serif;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.animate-left-to-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

a {
    font-family: "Roboto";
    color: #000000;
    font-size: 1rem;
}

p {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
}

h1 {
    font-family: var(--font-orbitron), sans-serif;
    font-size: 2.8rem;
}

h2 {
    font-family: var(--font-orbitron);
    font-size: 1.6rem;
}

h3 {
    font-family: var(--font-orbitron);
    font-size: 1.4rem;
}

html {
    scroll-behavior: smooth;
}

header {
    display: flex;
    position: fixed;
    width: 100%;
    height: 52px;
    padding: 6px 10%;
    justify-content: space-between;
    align-items: center;
    top: 0;
    left: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #000;
    border-radius: 4px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px);
}

.navbar {
    display: flex;
    flex-direction: row;
}

.navbar-buttom {
    padding: 16px;
    font-weight: bold;
    cursor: pointer;
    font-family: var(--font-montserrat);
}

.navbar-buttom:hover {
    background-color: #f2f7ff;
    color: #00246A;
}

.logo {
    width: 200px;
    height: auto;
}

.banner-Inicial {
    display: flex;
    background-image: url(assets/img/caminhaocargabranco.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 52px;
    width: 100%;
    height: 100vh;
    padding: 6% 10%;
}

.text-titulo {
    display: flex;
    flex-direction: column;
    color: #FFFFFF;
    gap: 20px;
    width: 42vw;
    transition: 0.5s;
}

.titulo-principal {
    font-size: 2.2rem;
    color: #00246A;
}

.subtitulo {
    font-size: 1.4rem;
    width: 38vw;
}

.botao-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00246A;
    color: #FFFFFF;
    padding: 10px;
    width: 440px;
    border-radius: 16px;
    gap: 20px;
    font-family: var(--font-montserrat);
}

.botao-hero:hover {
    background-color: #001b52;
}

.whatsapp-icon-hero {
    width: 40px;
    height: auto;
}



.titulo {
    color: #00246A;
}

.InicioButton {
    padding: 20px 40px;
    cursor: pointer;
    transition: 0.3s;
}

.InicioButton:hover {
    background-color: blue;
    margin-bottom: 6px;
}

.servicos {
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 4% 10%;
}

.cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-evenly;
    margin: 12px 0;
    gap: 12px;
}

.card {
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 440px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card .img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.card .imagem {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card h3 {
    font-family: var(--font-orbitron);
    font-size: 1.2rem;
    color: #00246A;
    margin: 16px 18px 8px;
}

.card p {
    font-size: 0.95rem;
    margin: 0 18px 12px;
    color: #333;
    flex-grow: 1;
}

.card .botao {
    margin-bottom: 16px;
}

.botao {
    width: 80%;
    margin: 0 auto;
    background: #00246A;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-family: var(--font-orbitron);
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}

.botao:hover {
    background: #01338f;
}


.apresentacao {
    padding: 4% 10%;
    background-color: #dadada;
}

.info {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-montserrat);
    margin-left: 30%;
    width: 40vw;
}

.session {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding-top: 4%;
}

.traco {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    width: 10px;
    background-color: #00246A;
    width: 2px;
    height: 160px;
}

.text {
    display: flex;
    flex-direction: column;
}

.circulo {
    background-color: #00246A;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.faq {
    padding: 4% 10%;
}

.faq-container {
    width: 80%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 16px 18px;
    font-size: 1rem;
    font-family: var(--font-montserrat);
    text-align: left;
    background: #ffffff;
    color: #001642;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 1.4rem;
    color: #00246A;
    transition: 0.3s;
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    padding: 0 18px;
    transition: 0.35s ease;
}

.faq-answer p {
    padding: 14px 0;
    font-family: var(--font-montserrat);
    font-size: 0.95rem;
    color: #333;
}

.whatsapp-icon {
    position: fixed;
    cursor: pointer;
    width: 50px;
    height: 50px;
    bottom: 0;
    right: 0;
    margin: 2%;
}

footer {
    display: flex;
    background-color: #dadada;
    flex-wrap: wrap;
    padding: 28px 10%;
    justify-content: space-evenly;
}

.logo-footer {
    display: flex;
    align-items: center;
}

.logofooter {
    width: 360px;
}

.nav-footer {
    display: flex;
    flex-direction: column;
    margin-top: 18px;
}

.navbar-footer {
    width: 180px;
    text-decoration: underline;
    font-family: var(--font-montserrat);
}

.navbar-footer:hover {
    color: #00246A;
}

.direitos {
    display: flex;
    padding-top: 28px;
    font-family: var(--font-montserrat);
}


@media (max-width: 937px) {
    .hamburger {
        display: flex;
        z-index: 1;
    }

    .navbar {
        position: absolute;
        top: 52px;
        right: 0;
        width: 220px;
        background: #ffffff;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: 0.25s ease;
    }

    .navbar.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    .navbar-buttom {
        width: 100%;
        text-align: left;
        padding: 14px 18px;
        font-size: 1rem;
        background: #ffffff;
        border-bottom: 1px solid #eee;
    }

    .navbar-buttom:last-child {
        border-bottom: none;
    }

    .navbar-buttom:hover {
        background: #f2f7ff;
        color: #00246A;
    }

    .text-titulo {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .titulo-principal {
        font-size: 2rem;
    }

    .subtitulo {
        font-size: 1.2rem;
    }

    .info {
        width: 80vw;
        margin-left: 0;
    }

    .botao-hero {
        width: 100%;
        max-width: 320px;
    }

    .faq {
        padding: 8% 6%;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 16px;
    }

    footer {
        flex-direction: column;
        align-items: center;
    }

    .logofooter {
        width: 80vw;
    }

    .nav-footer {
        margin-left: 10vw;
    }

    .direitos p {
        font-size: 0.6rem;
    }

}