body {
    margin: 0;
    font-family: 'Poppins', sans-serif;

    background:
        linear-gradient(rgba(0,0,0,0.60), rgba(0,0,0,0.60)),
        url("images/imagemdefundo.png");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    color: #fff;
}

/* =========================
   MENU
========================= */

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background: rgba(0,0,0,0.45);

    backdrop-filter: blur(5px);

    z-index: 9999;

    animation: menuSlide 1.2s ease forwards;
}

.menu-container {
    max-width: 1200px;

    margin: 0 auto;

    padding: 1px 20px;

    display: flex;
    align-items: center;
}

.menu-logo img {
    height: 150px;
}

.menu-links {
    list-style: none;

    display: flex;

    gap: 30px;

    margin: 0 auto;

    padding: 0;
}

.menu-links a {
    color: #fff;

    text-decoration: none;

    font-weight: 500;

    padding: 6px 10px;

    border-radius: 6px;

    position: relative;

    transition: 0.3s;
}

.menu-links a:hover {
    background: rgba(30,144,255,0.15);

    color: #1E90FF;
}

.menu-links a::after {
    content: "";

    position: absolute;

    bottom: -4px;
    left: 10%;

    width: 80%;
    height: 2px;

    background: #1E90FF;

    transform: scaleX(0);

    transition: 0.3s;
}

.menu-links a:hover::after {
    transform: scaleX(1);
}

.menu-btn {
    background: #37a7f1;

    padding: 10px 22px;

    border-radius: 6px;

    color: #fff;

    font-weight: bold;

    text-decoration: none;

    transition: all 0.25s ease;
}

.menu-btn:active {
    transform: translateY(0);

    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* =========================
   HERO
========================= */

.hero-text {
    text-align: center;

    color: #fff;

    padding: 180px 20px 70px;
}

.hero-text h1 {
    font-size: 48px;

    margin-bottom: 12px;
}

.hero-text p {
    font-size: 24px;

    font-weight: 600;

    max-width: 1000px;

    margin: 0 auto;
}

/* =========================
   BLOCO CENTRAL
========================= */

.hero-divider {
    display: flex;

    justify-content: center;

    margin: 10px 0 90px;
}

.info-box {
    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    width: 100%;

    max-width: 900px;

    margin: 0 auto;

    padding: 30px;

    border: 1px solid rgba(255,255,255,0.15);

    background: rgba(0,0,0,0.22);

    backdrop-filter: blur(8px);

    border-radius: 28px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.info-box img {
    width: 420px;

    border-radius: 12px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.info-box video {
    width: 700px;

    max-width: 100%;

    height: auto;

    display: block;

    margin: 0 auto;

    border-radius: 18px;

    object-fit: contain;

    background: #000;

    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.info-text {
    color: #fff;

    max-width: 350px;
}

.info-text h3 {
    font-size: 22px;

    margin-bottom: 18px;
}

.info-text p {
    font-size: 15px;

    line-height: 1.7;

    color: rgba(255,255,255,0.88);
}

.info-text {
    color: #fff;

    max-width: 350px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

/* =========================
   SEÇÕES
========================= */

section {
    scroll-margin-top: 120px;
}

section h2 {
    text-align: center;

    margin-bottom: 30px;
}

/* =========================
   SOBRE
========================= */

.quem-somos-titulo,
.servico-titulo {
    cursor: pointer;

    text-align: center;
}

.quem-somos-titulo span,
.servico-titulo span {
    margin-left: 6px;

    transition: transform 0.3s ease;
}

.sobre-texto,
.servico-detalhe {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transform: translateY(-10px);

    transition:
        max-height 0.6s ease,
        opacity 0.4s ease,
        transform 0.4s ease;
}

.sobre-texto.aberto,
.servico-detalhe.aberto {
    max-height: 1200px;

    opacity: 1;

    transform: translateY(0);
}

.sobre-texto {
    max-width: 1100px;

    margin: 0 auto;
}

.sobre-imagens {
    display: flex;

    gap: 20px;

    margin-top: 20px;
}

.sobre-imagens img,
.sobre-texto-aberto img {

    width: 100%;

    height: 250px;

    object-fit: contain;

    background: rgba(0,0,0,0.2);

    border-radius: 12px;
}

/* =========================
   SERVIÇOS
========================= */

.servicos {
    max-width: 1100px;

    margin: 0 auto;

    display: flex;

    gap: 30px;

    flex-wrap: wrap;
}

.servico {
    flex: 1;

    min-width: 250px;

    background: rgba(0,0,0,0.22);

    padding: 20px;

    border-radius: 12px;

    border: 1px solid rgba(255,255,255,0.08);
}

/* =========================
   FORMULÁRIO
========================= */

.form-section {
    display: none;

    padding: 60px 20px;
}

.form-section.ativo {
    display: block;

    animation: slideUpFade 0.6s ease forwards;
}

.form-section h2 {
    color: #fff;

    text-align: center;

    margin-bottom: 30px;

    font-size: 52px;
}

#formOrcamento {
    max-width: 1000px;

    margin: 0 auto;
}

.form-row {
    display: flex;

    gap: 20px;
}

#formOrcamento input,
#formOrcamento textarea,
#formOrcamento select {
    width: 100%;

    padding: 18px;

    border-radius: 12px;

    border: none;

    background: rgba(255,255,255,0.88);

    font-size: 15px;

    margin-bottom: 16px;
}

#formOrcamento textarea {
    min-height: 180px;

    resize: none;
}

#formOrcamento button {
    width: 100%;

    padding: 18px;

    border: none;

    border-radius: 12px;

    background: #22ac4b;

    color: #fff;

    font-weight: bold;

    cursor: pointer;

    transition: 0.25s ease;
}

#formOrcamento button:hover {
    background: #60ff83;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: rgba(0,0,0,0.35);

    margin-top: 60px;
}

.footer-container {

    max-width: 1400px;

    margin: 0 auto;

    padding: 8px 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 10px;

    flex-wrap: wrap;
}

.footer-col {
    max-width: 300px;
}

.footer-col h4 {
    color: #fff;

    margin-bottom: 1px;
}

.footer-col ul {
    list-style: none;

    padding: 0;

    margin: 0;
}

.footer-col li {
    margin-bottom: 1px;

    line-height: 1.5;
}

.social-bar {

    display: flex;

    justify-content: center;

    align-items: center;

    margin-top: 10px;
}

.social-bar img {

    width: 180px;

    max-width: 90%;

    opacity: 0.95;

    transition: 0.3s ease;
}

.social-bar img:hover {

    opacity: 1;

    transform: scale(1.03);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);

    text-align: center;

    padding: 14px;

    font-size: 13px;

    color: rgba(255,255,255,0.6);
}

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float {
    position: fixed;

    bottom: 25px;
    right: 25px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 9999;
}

.whatsapp-float img {
    width: 50px;

    transition: 0.5s ease;
}

.whatsapp-float:hover img {
    transform: scale(1.08);
}

.whatsapp-notify {
    position: absolute;

    top: 0px;
    right: 0px;

    width: 13px;
    height: 13px;

    background: red;

    border-radius: 50%;
}

/* =========================
   DROPDOWN CONTATO
========================= */

.menu-contato {
    position: relative;
}

.contato-dropdown {
    position: absolute;

    top: 130%;
    right: 0;

    background: rgba(0,0,0,0.95);

    padding: 14px 16px;

    border-radius: 8px;

    min-width: 260px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition: all 0.25s ease;

    z-index: 9999;
}

.contato-dropdown.ativo {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.contato-dropdown p {
    margin: 0 0 10px;

    color: #fff;

    font-size: 14px;
}

.contato-dropdown span {
    font-size: 12px;

    color: rgba(255,255,255,0.65);
}

/* =========================
   CTA ORÇAMENTO
========================= */

.cta-orcamento {
    display: inline-block;

    background: #22ac4b;

    color: #fff !important;

    font-weight: bold;

    padding: 5px 10px;

    border-radius: 6px;

    text-decoration: none;

    transition: 0.25s ease;
}

.cta-orcamento:hover {
    background: #60ff83;

    transform: translateY(-2px);
}

/* =========================
   ANIMAÇÕES
========================= */

.animate {
    opacity: 0;

    animation: slideUpFade 0.8s ease forwards;
}

@keyframes slideUpFade {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes menuSlide {

    from {
        opacity: 0;
        transform: translateX(-120px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 900px) {

    .menu-container {
        flex-direction: column;

        gap: 20px;
    }

    .menu-links {
        flex-wrap: wrap;

        justify-content: center;
    }

    .info-box {
        flex-direction: column;
    }

    .info-box img {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }
}

.truck-header {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 200px;
}

.truck-header img {
    width: 300px;

    animation: truckEntrance 2.0s ease-out forwards;
}

@keyframes truckEntrance {

    from {
        transform: translateX(700px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.quem-somos-titulo {

    text-align: center;

    font-size: 25px;

    margin-bottom: 25px;

    color: white;
}

.servicos-toggle {
    font-size: 20px;
}

.quem-somos-descricao {

    max-width: 950px;

    margin: 0 auto;

    text-align: center;

    line-height: 1.8;

    font-size: 18px;

    color: rgba(255,255,255,0.92);
}

.quem-somos-galeria-box {

    max-width: 1200px;

    margin: 40px auto 0;

    padding: 30px;

    background: rgba(0,0,0,0.28);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 28px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.30);
}

.galeria-quem-somos {

    display: flex;

    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;
}

.galeria-quem-somos img {

    width: 380px;

    border-radius: 20px;

    object-fit: cover;

    transition: 0.3s ease;
}

.galeria-quem-somos img:hover {

    transform: scale(1.02);
}

/* =========================
   GALERIA SERVIÇOS
========================= */

.galeria-servicos a {

    display: block;

    width: 100%;

    height: 100%;

    overflow: hidden;

    border-radius: 18px;
}

.galeria-servicos img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    border-radius: 18px;

    display: block;

    cursor: pointer;

    transition: 0.3s ease;

    box-shadow: 0 10px 30px rgba(0,0,0,0.28);
}

.galeria-servicos img:hover {

    transform: scale(1.02);

    box-shadow: 0 18px 45px rgba(0,0,0,0.4);
}

#servicos .galeria-servicos {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;

    margin-top: 40px;

    padding: 40px;

    background: rgba(0,0,0,0.32);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 24px;

    max-width: 1400px;

    margin-left: auto;

    margin-right: auto;

    transition: 0.4s ease;
}

/* FOTO 1 */

#servicos .galeria-servicos a:nth-child(1) {

    grid-column: span 2;

    height: 340px;
}

/* FOTO 2 */

#servicos .galeria-servicos a:nth-child(2) {

    height: 240px;

    margin-top: 60px;
}

/* FOTO 3 */

#servicos .galeria-servicos a:nth-child(3) {

    grid-column: span 2;

    height: 280px;
}

/* FOTO 4 */

#servicos .galeria-servicos a:nth-child(4) {

    height: 360px;
}

/* FOTO 5 */

#servicos .galeria-servicos a:nth-child(5) {

    height: 230px;

    margin-top: -20px;
}

/* FOTO 6 */

#servicos .galeria-servicos a:nth-child(6) {

    grid-column: span 2;

    height: 300px;
}

/* FOTO 7 */

#servicos .galeria-servicos a:nth-child(7) {

    height: 250px;
}

/* FOTO 8 */

#servicos .galeria-servicos a:nth-child(8) {

    height: 330px;

    margin-top: 40px;
}

.fechado {

    display: none !important;
}

.servicos-toggle {

    cursor: pointer;
}

#servicos {

    scroll-margin-top: 140px;

    padding-bottom: 280px;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 900px) {

    #servicos .galeria-servicos {

        grid-template-columns: 1fr;

        padding: 20px;
    }

    #servicos .galeria-servicos img {

        height: auto !important;

        margin-top: 0 !important;

        grid-column: span 1 !important;
    }
}

.video {
    width: 100%;

    max-width: 820px;

    height: auto;

    display: block;

    margin: 0 auto;

    object-fit: contain;

    background: #000;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    body {

        overflow-x: hidden;
    }

    /* MENU */

    .menu {

        flex-direction: column;

        gap: 18px;

        padding: 18px 10px;
    }

    .menu img {

        width: 140px;
    }

    .menu nav {

        display: flex;

        flex-wrap: wrap;

        justify-content: center;

        gap: 18px;
    }

    .menu-logo img {

        height: 90px;
    }

    /* HERO */

    .hero {

        min-height: auto;

        padding-bottom: 40px;
    }

    .hero-text {

        padding: 340px 20px 40px;
    }

    .hero h1 {

        font-size: 34px;

        line-height: 1.15;

        text-align: center;

        margin-bottom: 18px;
    }

    .hero p {

        font-size: 18px;

        line-height: 1.5;

        padding: 0 12px;

        text-align: center;

        margin-top: 10px;
    }

    /* VIDEO BOX */

    .hero-divider {

        margin: 10px 0 60px;
    }

    .info-box {

        width: 92%;

        padding: 18px;

        margin-top: 0;
    }

    .info-box video {

        width: 100%;

        height: auto;

        border-radius: 18px;
    }

    /* QUEM SOMOS */

    .quem-somos-container {

        flex-direction: column;

        gap: 20px;

        padding: 20px;
    }

    .quem-somos-container img {

        width: 100%;

        height: auto;
    }

    .quem-somos-texto {

        width: 100%;

        text-align: center;
    }

    /* SERVIÇOS */

    #servicos .galeria-servicos {

        grid-template-columns: 1fr;

        padding: 20px;

        gap: 20px;

        width: 92%;
    }

    #servicos .galeria-servicos img {

        width: 100% !important;

        height: auto !important;

        margin-top: 0 !important;

        grid-column: auto !important;
    }

    /* TITULOS */

    h2 {

        font-size: 42px;

        text-align: center;
    }

    /* CONTATO */

    .contato-box {

        width: 92%;

        padding: 20px;
    }

    /* REDES SOCIAIS */

    .social-bar img {

        width: 220px;

        max-width: 90%;
    }

    /* WHATSAPP */

    .whatsapp-float {

        width: 58px;

        bottom: 20px;

        right: 20px;
    }
}