/* ================================
   CARDS VERTICAIS – PADRÃO GLOBAL
================================ */
body {
    margin: 0;
    padding: 0;
     background: #eaeaee; 
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

.hero {
   padding: 40px;
    background:
    url("./imG/adv.png") center/cover no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    max-height: 450px;
    position:relative;
}

.hero-content h1 {
    font-size: 3.6rem;
    font-weight: 800;
    color:#eaeaea;
    margin-bottom: 30px;
}

.hero-content{
    margin-top: 60px;
}

.hero-content h2 {
    font-size: 1.6rem;
    font-weight: 400;
    color: #eaeaea;
   
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 520px;
    color: #d7d7d7;
    margin-bottom: 25px;
}

/* BOTÕES */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: px;
}

.btn-hero {
    padding: 14px 34px;
    background: #2f69ff;
    color: #fff;
    font-size: 1.15rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    margin-top: 20px;
}

.btn-hero:hover {
    background: #1e50dd;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #ffffff;
}

.btn-outline1{
    padding: 14px 34px;
    background:  #49cbff;
    color: #fff;
    font-size: 1.15rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    margin-top: 20px;
}

.btn-outline1:hover{
    background:  #2ba8e2;
  
}

.btn-outline:hover {
    background: rgba(29, 28, 28, 0.815);
}

.nav-menu {
    display: flex;
    justify-content: flex-start;  /* Alinha tudo à esquerda */
    gap: 20px;                    /* Espaçamento entre os botões */
    padding-left:2px       
}

.nav-link {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: white;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
    backdrop-filter: blur(6px);
}

.nav-link:hover {
    background: rgba(10, 108, 255, 0.938);
    transform: translateY(-3px);
}

.assinatura-advogado {
    position: absolute;
    bottom: 20px;        /* Ajuste para subir ou descer */
    right: 35px;         /* Ajuste para aproximar ou afastar da borda */
    
    font-family:'Times New Roman', serif; /* destaque elegante */
    font-style: oblique;
    font-size: 1.7rem;
    letter-spacing: 0.5px;

    color: rgba(255, 255, 255, 0.85); /* discreto e elegante */
    font-weight: 450;

    backdrop-filter: blur(2px); /* melhora contraste sobre fundos variáveis */
    padding: 4px 8px;
}




.cards-vertical-container {
    background: #eaeaee;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
    margin-top:-95px;

}

.card-vertical {
    width: 100%;
    max-width: 850px;
    background: #fffcfcd5;
    padding: 35px 30px;

    border-radius: 14px;
    border: 1px solid #2f2f2f;

    box-shadow: 0px 12px 28px rgba(0, 119, 255, 0.32);

    transition: 0.3s ease;
}

/* Títulos */
.card-vertical h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #042788;
    margin-bottom: 10px;
}

/* Texto */
.card-vertical p {
    font-size: 1rem;
    color: #282930;
    line-height: 1.55;
}

/* Hover glorificado */
.card-vertical:hover {
    transform: translateY(-6px);
    box-shadow: 0px 16px 34px rgba(0, 140, 255, 0.55);
    border-color: #b5b5b5;
}

/* Seção inteira ocupando largura total */
.cta-final {
    width: 100%;
    background: linear-gradient(135deg, #00308a, #0044cc);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.cta-wrapper {
    width: 90%;
    max-width: 1300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

/* Texto */
.cta-text h3 {
    color: #00c3ff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.cta-text h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 800;
}

.cta-text p {
    color: #e6e6e6;
    font-size: 17px;
    line-height: 1.5;
}

/* Formulário */
.cta-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-form input {
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    background: #eef3ff;
    outline: none;
}

.cta-form button {
    background: rgba(10, 108, 255, 0.938);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.cta-form button:hover {
     background: rgba(63, 140, 255, 0.938);
   transform: translateY(-3px);
}

/* Responsivo */
@media (max-width: 900px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-text {
        margin-bottom: 30px;
    }

    .cta-form {
        width: 100%;
    }
}
.vantagens {
    padding: 80px 40px;
    color: #0084ff;
    text-align: center;
    margin-top: -70;
}

.titulo-vantagens {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    padding-top: 20px;
}

/* Título */
.faq-title {
    text-align: center;
    color: rgb(0, 66, 151);
    font-size: 2.5rem;
    margin-top: 60px;
}

.faq-title span {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.8;
}

/* Container */
.faq-container {
    width: 90%;
    max-width: 1300px;   /* aumenta a largura profissional */
    margin: 50px auto;
    background: #021327;
    padding: 40px;
    border-radius: 20px;
}

/* Perguntas */
.faq-item {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 18px 25px;
    margin-bottom: 18px;
    transition: all .2s ease;
    cursor: pointer;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.13);
}

/* Botão da pergunta */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-size: 1.3rem;
    text-align: left;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "⌄";
    font-size: 1.4rem;
    transition: .3s ease;
    opacity: 0.8;
}

/* Resposta */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #d9e6ff;
    font-size: 1.1rem;
    line-height: 1.6;
    padding-right: 10px;
    transition: max-height .45s ease, opacity .3s ease;
    opacity: 0;
}

/* Quando abre */
.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    margin-top: 12px;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
    opacity: 1;
}

/* Responsivo */
@media (max-width: 600px) {
    .faq-title {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-answer {
        font-size: 1rem;
    }
}


/* Responsividade */
@media (max-width: 768px) {
    .card-vertical {
        padding: 30px 25px;
    }
}

/* BOTÃO FLUTUANTE */
.chat-floating-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height:55px;
    background: #1A73E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
    transition: .2s;
    margin-top: 23px;
    
}
.chat-floating-btn img {
    width: 32px;
}
.chat-floating-btn:hover {
    transform: scale(1.12);
}

/* OVERLAY */
.chat-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 9998;
}

/* FUNDO ESCURECIDO */
.chat-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45); /* fundo escuro igual contabilizei */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 40px;
}

/* CONTAINER DO MODAL */
.chat-modal-content {
    background: #ffffff;
    width: 95%;
    max-width: 980px;        /* 🔥 MAIS LARGO */
    max-height: 90vh;        /* 🔥 NUNCA MAIS CORTA NADA */
    overflow-y: auto;        /* 🔥 SCROLL INTERNO SE PRECISAR */
    border-radius: 22px;
    padding: 40px;
    display: flex;
    gap: 50px;
    position: relative;
    animation: fadeIn .25s ease-out;
    align-content:center;
}

/* BARRA AZUL SUPERIOR */
.chat-modal-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #1A73E8;
}

/* COLUNA ESQUERDA */
.chat-left {
    width: 38%;
}

/* IMAGEM */
.chat-image {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* TITULO */
.chat-left h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1A3A6D;
    margin: 15px 0 10px 0;
}

/* TEXTO */
.chat-left p {
    color: #4b5563;
    font-size: 16px;
}

/* FORM */
.chat-form {
    width: 62%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-form input {
    padding: 13px 14px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #d9e3ef;
    font-size: 15px;
    transition: .2s;
}

.chat-form input:focus {
    outline: none;
    border-color: #1A73E8;
    box-shadow: 0 0 0 3px rgba(26,115,232,0.20);
}

/* BOTÕES */
.chat-buttons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

/* BOTÃO FECHAR */
.chat-close {
    position: absolute;
    right: 20px;
    top: 18px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #f7faff;
}

.btn-enviar {
    width: 100%;
    padding: 14px;
    background: #1A73E8;
    color: white;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: .2s;
}

.btn-enviar:hover {
    background: #1558b3;
}

.cta-area {
    position: fixed;       /* 🔥 fica presa na tela */
    bottom: 0;             /* fixa no rodapé */
    left: 0;
    width: 100%;           /* ocupa toda a largura */
    background: #ffffff;
    padding: 18px 40px;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08); /* sombra elegante */
    z-index: 9999;
    display: flex;
    justify-content: center;
    gap: 60px;
    transition: transform .35s ease, opacity .35s ease;
}

.cta-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-icon {
    width: 35px;
    height: 35px;
}

.cta-item h4 {
    margin: 0;
    font-size: 16px;
    color: #012a64;
    font-weight: 600;
}

.cta-item p {
    margin: 0;
    font-size: 14px;
    color: #4c4c4c;
}

/* BOTÃO AZUL BORDA */
.btn-outline {
    padding: 12px 28px;
    border: 2px solid #012a64;
    border-radius: 40px;
    color: #012a64;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.btn-outline:hover {
    background: #012a64;
    color: #fff;
}

/* BOTÃO NEON */
.btn-filled {
    padding: 12px 30px;
    background: #00f6ff;
    border-radius: 40px;
    color: #012a64;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}

.btn-filled:hover {
    opacity: 0.85;
}

/* BOTÃO FLUTUANTE */
.floating-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #012a64;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.floating-btn:hover {
    transform: scale(1.05);
}

.floating-btn img {
    width: 26px;
    filter: brightness(1000%);
}

.cta-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-top: 3px;
}

.cta-area.hide {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
}

.primeiro{
    display: flex;
    gap:20px
}

.segundo{
    display: flex;
    gap:20px
}

@media (max-width: 768px) {
    .cta-area {
        flex-direction: column;
        padding: 20px;
        gap: 25px;
        text-align: center;
    }
    .cta-item {
        flex-direction: column;
        text-align: center;
    }
}

.contato-footer {
    background: #021327; /* azul escuro profissional */
    padding: 50px 0 20px;
    border-top: 8px solid #0040ff; /* borda azul escura + destaque */
    color: #dce7ff; /* texto claro */
    font-family: 'Inter', sans-serif;
}

.container-footer {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.col-footer h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.col-footer p {
    color: #c8d6ff;
    line-height: 1.6;
    margin-bottom: 15px;
}

.col-footer ul {
    list-style: none;
    padding: 0;
}

.col-footer ul li {
    margin-bottom: 8px;
}

.col-footer ul li a {
    color: #c8d6ff;
    text-decoration: none;
    transition: 0.2s;
}

.col-footer ul li a:hover {
    color: #66a3ff;
}

.copy {
    text-align: center;
    margin-top: 40px;
    color: #b5c6ff;
    font-size: 0.9rem;
}

html{
     scroll-behavior: smooth;
}


/* ============================================
   📱 RESPONSIVIDADE GERAL PARA CELULAR
============================================ */
@media (max-width: 768px) {

    /* HERO */
    .hero {
        height: auto;
        padding: 60px 20px;
        background-position: center top;
        text-align: center;
    }

    .hero-content {
        margin-top: 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 100%;
    }

    /* BOTÕES */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero,
    .btn-outline,
    .btn-outline1 {
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 1rem;
    }

    /* NAV */
    .nav-menu {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }


    /* CARDS */
    .cards-vertical-container {
        padding: 60px 20px;
    }

    .card-vertical {
        padding: 25px 20px;
        max-width: 100%;
    }

    .card-vertical h3 {
        font-size: 1.2rem;
    }


    /* CTA FINAL */
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-text h2 {
        font-size: 28px;
    }

    .cta-text p {
        font-size: 15px;
    }


    /* MODAL */
    .chat-modal-content {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }

    .chat-left,
    .chat-form {
        width: 100%;
    }


    /* CTA RODAPÉ */
    .primeiro,
    .segundo {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cta-item {
        flex-direction: column;
    }

    /* FOOTER */
    .container-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

}


@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-content h2 {
        font-size: 1.05rem;
    }

    .hero {
        padding-top: 30px;
    }

    .faq-question {
        font-size: 1rem;
    }
}
