@charset "UTF-8";

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

body {
    font-family: 'Poppins', sans-serif;
    background: #070b12;
    color: #fff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

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

.hero {
    min-height: 60vh;
    background: radial-gradient(circle at 75% 45%, #1b2b48 0%, #0b1320 55%, #070b12 100%);
    padding: 60px 120px;
    display: flex;
    flex-direction: column;
    overflow: visible;
    width: 100%;
    max-width: 100%;
}

.navbar {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.nav-center a {
    color: #fff;
    text-decoration: none;
    margin-right: 35px;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-center a:hover {
    color: #ffe600;
}

.hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-left {
    max-width: 650px;
}

.logo {
    width: 390px;
    margin-bottom: 25px;
}

.hero-left h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
}

.hero-left span {
    color: #ffe600;
    font-weight: 900;
}

.hero-left p {
    margin-top: 30px;
    font-size: 20px;
    color: #cbd5e1;
}

.hero-right img {
    width: 580px;
    margin-top: -100px;
    filter: drop-shadow(0 0 60px rgba(255, 230, 0, 0.15));
}

/* ========================= */
/*      FAIXA AMARELA       */
/* ========================= */

.highlight {
    background: linear-gradient(90deg, #f5f56b, #ffe600);
    color: #0b1320;
    text-align: center;
    padding: 50px 20px;
    font-size: 22px;
    font-weight: 500;
    width: 100%;
}

.highlight strong {
    font-weight: 800;
}

/* ========================= */
/*        SERVIÇOS           */
/* ========================= */

.servicos {
    background: #f3f4f6;
    padding: 100px 120px;
    text-align: center;
    width: 100%;
}

.servicos h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 70px;
    color: #0b1320;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    width: 100%;
}

.card {
    height: 270px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s;
}

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

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11,19,32,0.70);
}

.overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    text-align: center;
    z-index: 2;
}

.overlay img {
    width: 100px;
    background: rgba(255,230,0,0.30);
    padding: 24px;
    border-radius: 50%;
    transition: 0.3s;
}

.overlay p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.card:hover .overlay img {
    transform: scale(1.1);
}

/* ========================= */
/*           MARCAS          */
/* ========================= */

.marcas {
    background: #ffffff;
    padding: 100px 120px;
    text-align: center;
    width: 100%;
}

.marcas h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0b1320;
    margin-bottom: 70px;
}

.marcas-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
    width: 100%;
}

.marca {
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.4s ease;
}

.marca img {
    max-width: 180px;
    max-height: 120px;
}

.marca:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ========================= */
/*      TARJA PORTFÓLIO      */
/* ========================= */

.portfolio-banner {
    background-image: url("icones/imagemPortifolio.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
}

.portfolio-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 60px 120px;
}

.portfolio-banner-overlay h2 {
    color: #ffe600;
    font-size: 48px;
    font-weight: 900;
}

/* ========================= */
/*       CARDS PORTFÓLIO     */
/* ========================= */

.portfolio {
    background: #f3f4f6;
    padding: 100px 120px;
    width: 100%;
}

.portfolio-cards {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    width: 100%;
}

.portfolio-card {
    width: 340px;
    height: 420px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-15px);
}

.portfolio-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

.portfolio-card h3 {
    position: absolute;
    bottom: 40px;
    left: 30px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    z-index: 2;
}

/* ========================= */
/*        PLANOS FINAL       */
/* ========================= */

.planos {
    position: relative;
    background: linear-gradient(to bottom, #efe7c7 0%, #f4e63c 100%);
    padding: 140px 120px;
    overflow: hidden;
    width: 100%;
}

/* TEXTO GIGANTE AO FUNDO */
.planos::before {
    content: "PLANOS FLEXÍVEIS";
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 130px;
    font-weight: 900;
    color: rgba(0,0,0,0.05);
    white-space: nowrap;
    pointer-events: none;
}

/* GRID 3 COLUNAS */
.planos-grid {
    display: grid;
    grid-template-columns: 300px 1fr 480px;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ========================= */
/* COLUNA ESQUERDA */
/* ========================= */

.col-esquerda {
    display: flex;
    justify-content: center;
}

.card-plano {
    background: #e9e9e9;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.15),
        inset 0 0 20px rgba(255,255,255,0.5);
    width: 230px;
    text-align: center;
}

.card-plano h3 {
    font-size: 24px;
    font-weight: 900;
    color: #1b2b48;
    line-height: 1.3;
}

.card-plano span {
    font-size: 14px;
    color: #1b2b48;
}

/* ========================= */
/* COLUNA DO MEIO */
/* ========================= */

.col-meio {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.plano-linha {
    display: flex;
    align-items: center;
}

/* NÚMERO GRANDE */
.numero {
    font-size: 150px;
    font-weight: 900;
    color: #1b2b48;
    line-height: 1;
    margin-right: -30px;
    z-index: 1;
}

/* BOX */
.plano-box {
    background: #ffffff;
    padding: 28px 60px;
    border-radius: 18px;
    font-weight: 900;
    font-size: 24px;
    color: #1b2b48;
    border: 4px solid #1b2b48;
    box-shadow: 0 18px 35px rgba(0,0,0,0.2);
    z-index: 2;
}

/* ========================= */
/* COLUNA DIREITA */
/* ========================= */

.col-direita {
    max-width: 480px;
}

.col-direita p {
    font-size: 18px;
    line-height: 1.9;
    color: #1b2b48;
    margin-bottom: 50px;
}

.col-direita strong {
    font-weight: 900;
}

/* BOTÃO */
.btn-agendar {
    display: inline-block;
    background: #1b2b48;
    color: #ffe600;
    padding: 22px 55px;
    border-radius: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.btn-agendar:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    background: #ffe600;
    color: #1b2b48;
    border: 2px solid #1b2b48;
}

/* ========================= */
/*         PARCEIROS         */
/* ========================= */

.parceiros {
    background: #ffffff;
    padding: 100px 120px;
    text-align: center;
    width: 100%;
}

.parceiros h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0b1320;
    margin-bottom: 30px;
}

.parceiros p {
    font-size: 18px;
    color: #1b2b48;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
    width: 100%;
}

.parceiro-item {
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.4s ease;
}

.parceiro-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.parceiro-item img {
    max-width: 180px;
    max-height: 100px;
    object-fit: contain;
}

/* ========================= */
/*            FAQ            */
/* ========================= */

.faq {
    background: #f3f4f6;
    padding: 100px 120px;
    width: 100%;
}

.faq h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0b1320;
    text-align: center;
    margin-bottom: 70px;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 100%;
}

.faq-pergunta {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.faq-pergunta:hover {
    background: #f8f8f8;
}

.faq-pergunta h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1b2b48;
    margin: 0;
    text-align: left;
}

.faq-pergunta span {
    font-size: 24px;
    font-weight: 700;
    color: #ffe600;
    background: #1b2b48;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-resposta {
    padding: 0 30px 25px;
    color: #4a5568;
    line-height: 1.6;
    display: none;
    text-align: left;
}

.faq-item.active .faq-resposta {
    display: block;
}

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

.cta-final {
    background: linear-gradient(90deg, #f5f56b, #ffe600); /* Fundo amarelo */
    padding: 80px 120px;
    text-align: center;
    color: #1b2b48;
    width: 100%;
    box-sizing: border-box;
}

.cta-final h2 {
    font-size: 48px;
    font-weight: 800;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.2;
    color: #1b2b48;
}

.cta-final .btn-agendar {
    display: inline-block;
    background: #1b2b48;
    color: #ffe600;
    padding: 16px 50px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.cta-final .btn-agendar:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: #ffe600;
    color: #1b2b48;
    border: 2px solid #1b2b48;
}

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

.contato-preto {
    background: #070b12; /* Fundo preto */
    padding: 60px 120px;
    width: 100%;
    box-sizing: border-box;
}

.contato-preto .contato-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.contato-preto .contato-esquerda {
    flex: 1;
    text-align: left;
}

.contato-preto .logo-contato {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0) invert(1); /* Deixa a logo branca */
}

.contato-preto .contato-direita {
    flex: 1;
    text-align: right;
}

.contato-preto .contato-direita p {
    font-size: 18px;
    color: #fff; /* Texto branco */
    line-height: 1.6;
    margin-bottom: 5px;
}

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

footer {
    background: #070b12;
    color: #fff;
    text-align: center;
    padding: 30px 120px;
    font-size: 16px;
    border-top: 1px solid rgba(255,230,0,0.2);
    width: 100%;
    box-sizing: border-box;
}

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

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    /* Ajuste geral para mobile */
    .hero,
    .servicos,
    .marcas,
    .portfolio,
    .planos,
    .parceiros,
    .faq,
    .cta-final,
    .contato-preto,
    footer {
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    /* HERO */
    .hero {
        padding: 30px 20px;
    }

    .nav-center {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-center a {
        margin-right: 0;
        font-size: 16px;
    }

    .hero-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .logo {
        width: 200px;
    }

    .hero-left h1 {
        font-size: 24px;
    }

    .hero-left p {
        font-size: 16px;
    }

    .hero-right img {
        width: 100%;
        max-width: 280px;
        margin-top: 0;
    }

    /* FAIXA AMARELA */
    .highlight {
        padding: 40px 20px;
        font-size: 18px;
    }

    /* SERVIÇOS */
    .servicos {
        padding: 50px 20px;
    }

    .servicos h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        height: 220px;
    }

    .overlay img {
        width: 70px;
        padding: 15px;
    }

    /* MARCAS */
    .marcas {
        padding: 50px 20px;
    }

    .marcas h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .marcas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .marca img {
        max-width: 120px;
    }

    /* PORTFÓLIO BANNER */
    .portfolio-banner {
        height: 200px;
    }

    .portfolio-banner-overlay {
        padding: 30px 20px;
    }

    .portfolio-banner-overlay h2 {
        font-size: 32px;
    }

    /* PORTFÓLIO CARDS */
    .portfolio {
        padding: 50px 20px;
    }

    .portfolio-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .portfolio-card {
        width: 100%;
        max-width: 300px;
        height: 350px;
    }

    .portfolio-card h3 {
        font-size: 20px;
        bottom: 30px;
        left: 20px;
    }

    /* PLANOS */
    .planos {
        padding: 50px 20px;
    }

    .planos::before {
        display: none;
    }

    .planos-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .col-esquerda {
        order: 1;
    }

    .card-plano {
        padding: 30px 20px;
        width: 100%;
        max-width: 280px;
    }

    .card-plano h3 {
        font-size: 22px;
    }

    .col-meio {
        order: 2;
        gap: 30px;
        width: 100%;
    }

    .plano-linha {
        justify-content: center;
        gap: 20px; /* Ajuste do espaçamento no mobile */
    }

    .numero {
        font-size: 100px;
        margin-right: 0; /* Removido margin negativo */
    }

    .plano-box {
        padding: 15px 30px;
        font-size: 20px;
    }

    .col-direita {
        order: 3;
        max-width: 100%;
        text-align: center;
    }

    .col-direita p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    /* PARCEIROS */
    .parceiros {
        padding: 50px 20px;
    }

    .parceiros h2 {
        font-size: 24px;
    }

    .parceiros p {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .parceiros-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .parceiro-item img {
        max-width: 120px;
    }

    /* FAQ */
    .faq {
        padding: 50px 20px;
    }

    .faq h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .faq-pergunta {
        padding: 20px;
    }

    .faq-pergunta h3 {
        font-size: 16px;
    }

    .faq-resposta {
        padding: 0 20px 20px;
        font-size: 14px;
    }

    /* CTA FINAL */
    .cta-final {
        padding: 50px 20px;
    }

    .cta-final h2 {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .cta-final .btn-agendar {
        padding: 14px 35px;
        font-size: 16px;
    }

    /* CONTATO PRETO */
    .contato-preto {
        padding: 40px 20px;
    }

    .contato-preto .contato-info {
        flex-direction: column;
        gap: 30px;
    }

    .contato-preto .contato-esquerda {
        text-align: center;
        width: 100%;
    }

    .contato-preto .logo-contato {
        max-width: 220px;
        margin: 0 auto;
    }

    .contato-preto .contato-direita {
        text-align: center;
        width: 100%;
    }

    .contato-preto .contato-direita p {
        font-size: 16px;
        word-wrap: break-word;
    }

    /* FOOTER */
    footer {
        padding: 20px;
        font-size: 14px;
    }
}

/* Ajuste para telas muito pequenas */
@media (max-width: 380px) {
    .cta-final h2 {
        font-size: 26px;
    }

    .cta-final .btn-agendar {
        padding: 12px 25px;
        font-size: 15px;
        white-space: normal;
    }

    .contato-preto .logo-contato {
        max-width: 160px;
    }

    .contato-preto .contato-direita p {
        font-size: 14px;
    }
}