/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #FCFFFF;
    /* fundo claro da paleta */
    color: #355586;
    /* texto base em azul médio */
    line-height: 1.6;
}


/* NAVBAR FIXA */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #062855;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* overlay com azul primário */


/* conteúdo acima do overlay */

.navbar * {
    position: relative;
    z-index: 2;
}


/*barra da navegação*/


/* ===== Scrollbar personalizada (Webkit) ===== */

::-webkit-scrollbar {
    width: 10px;
    background: #FCFFFF;
    /* fundo claro */
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#062855, #355586);
    border-radius: 8px;
    border: 2px solid #FCFFFF;
    /* cria efeito “pill” */
}

::-webkit-scrollbar-thumb:hover {
    background: #062855;
}


/* ===== Firefox ===== */

* {
    scrollbar-width: thin;
    scrollbar-color: #062855 #FCFFFF;
}


/* LOGO */

.navbar img {
    padding: 7px;
    height: 60px;
    margin: 20px;
    border-radius: 18px;
}


/* MENU */

.menu li a {
    color: #FCFFFF;
}


/* Dropdown */

.btn.dropdown-toggle {
    color: #FCFFFF;
}

.dropdown-menu {
    background: #062855;
}

.dropdown-item {
    color: #FCFFFF;
}

.menu {
    list-style: none;
    display: flex;
    /* coloca lado a lado */
    gap: 18px;
    /* espaçamento entre itens */
    align-items: center;
}

.menu li {
    display: flex;
    padding-right: 20px;
}

.menu li a {
    text-decoration: none;
    color: #f9f9f9;
    position: relative;
    z-index: 2;
}

.menu li a:hover {
    color: #fbffffb2;
}

.btn.dropdown-toggle {
    background-color: transparent;
    color: #f9f9f9;
}

.btn.dropdown-toggle:hover {
    background-color: transparent;
    color: #f9f9f9;
}

.dropdown-menu,
.dropdown-item {
    font-size: 16px;
    font-weight: 500;
    background-image: url('/img/Paulista.png');
}


/* ====== HAMBÚRGUER ====== */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    position: relative;
    z-index: 3;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #fff;
    transition: .3s;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(6px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-6px);
}


/* ====== MENU MOBILE FECHADO ====== */

@media (max-width: 920px) {
    .hamburger {
        display: flex;
    }
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        flex-direction: column;
        padding: 90px 24px;
        background-image: url('/Paulista.png');
        background-size: cover;
        background-position: center;
        gap: 18px;
        transition: .35s ease;
        z-index: 2;
    }
    .menu.open {
        right: 0;
        /* abre o menu */
    }
}

.areas-section {
    position: relative;
    background-image: url(/Paulista.png);
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    z-index: 1;
}

.title-areas {
    font-weight: 700;
    color: #FCFFFF;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .55);
}

.intro-areas {
    color: #FCFFFF;
    line-height: 1.6;
    text-shadow: 10px 2px 6px rgba(0, 0, 0, .55);
}


/* wrapper de cards */

.cards-wrapper {
    display: flex;
    gap: 18px;
    justify-content: center;
}


/* card */

.area-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    border: 2px solid #FBFFFF;
    /* dourado */
    min-width: 280px;
    max-width: 320px;
}


/* imagem */

.area-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}


/* overlay */

.area-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .85);
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(transparent, rgba(0, 0, 0, .8));
}


/* botão CTA */

.btn-consulta {
    background: rgba(6, 40, 85, 0.45);
    padding: 12px 26px;
    border: 2px solid #FBFFFF;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}


/* responsivo */

@media (max-width: 768px) {
    .cards-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .area-card {
        max-width: 90%;
    }
}


/*Sobre */

.sobre-section {
    background-color: #faffffad;
    padding: 60px 0;
}

.sobre-img-box {
    border-radius: 14px;
    overflow: hidden;
}

.sobre-img-box img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}


/* bloco de texto */

.sobre-content {
    background: #1f2a3b;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .85);
    padding: 40px;
    border-radius: 14px;
    position: relative;
}


/* linha dourada decorativa */

.sobre-subtitle {
    margin-top: 20px;
    color: #fff;
    font-weight: 600;
}

.sobre-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}


/* botão */

.btn-sobre {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    background: #355586;
    color: #fff;
    border: 2px solid #fff;
    font-weight: 600;
}


/* responsivo */

@media(max-width: 991px) {
    .sobre-content {
        margin-top: 18px;
    }
    .sobre-img-box img {
        height: 340px;
    }
}


/*Juricido*/

.valores-section {
    background: #355586;
    background: radial-gradient(circle, rgba(53, 85, 134, 1) 0%, rgba(6, 40, 85, 1) 100%);
    padding: 60px 0;
}

.valores-title {
    color: #FBFFFF;
    font-weight: 700;
    max-width: 960px;
    margin: 0 auto;
}

.valor-card {
    background: #062855;
    background: radial-gradient(circle, rgba(6, 40, 85, 1) 21%, rgba(6, 40, 85, 1) 41%);
    color: #fff;
    border-radius: 18px;
    border: 2px solid #FBFFFF;
    /* dourado */
    padding: 22px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    text-transform: uppercase;
}

.valor-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
}

.valor-card p {
    color: #d9d9d9;
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .85);
}

.valor-icon {
    font-size: 24px;
}


/* responsivo */

@media(max-width: 768px) {
    .valores-title {
        font-size: 20px;
    }
}

.process-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin: 40px auto;
    max-width: 1200px;
}


/* CARD */

.process-card {
    background: rgba(255, 255, 255, .92);
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}


/* NÚMERO */

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #355586;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 14px;
}


/* TÍTULO */

.process-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #355586;
}


/* TEXTO */

.process-card p {
    font-size: 14.5px;
    color: #355586;
    line-height: 1.55;
    margin-bottom: 16px;
}


/* BOTÃO */

.btn-process {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: #062855;
    background: radial-gradient(circle, rgba(6, 40, 85, 1) 21%, rgba(6, 40, 85, 1) 41%);
}

.btn-process:hover {
    opacity: .9;
}


/* RESPONSIVO */

@media (max-width: 992px) {
    .process-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .process-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    background-image: url(/SP.png);
    background-size: cover;
    /* faz a imagem cobrir toda a área */
    background-position: center;
    /* mantém o foco central */
    background-repeat: no-repeat;
    /* impede repetição */
    background-attachment: fixed;
    /* efeito suave de fundo (opcional) */
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.contact-wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.contact-box {
    background: rgba(6, 40, 85, 0.45);
    border-radius: 18px;
    padding: 38px 42px;
    color: #FCFFFF;
    width: 480px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .15);
}


/* TÍTULO */

.contact-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-box h2 span {
    color: #FBFFFF;
}

.contact-box p {
    font-size: 14px;
    opacity: .9;
    margin-bottom: 22px;
}


/* CAMPOS */

.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #fff;
    background: #35558642;
    font-size: 14px;
    outline: none;
}

.contact-box textarea {
    resize: none;
}


/* BOTÃO */

.contact-box button {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    color: #fff;
    background: transparent;
    background: radial-gradient(circle, rgba(6, 40, 85, 1) 21%, rgba(6, 40, 85, 1) 41%);
    cursor: pointer;
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

.contact-box button:hover {
    opacity: .9;
}


/* RESPONSIVO */

@media (max-width: 820px) {
    .contact-wrapper {
        justify-content: center;
    }
    .contact-box {
        width: 100%;
    }
}

.faq-section {
    padding: 60px 20px;
    text-align: center;
}

.faq-section h2 {
    font-size: 34px;
    font-weight: 700;
    color: #2a2a2a;
}

.faq-divider {
    width: 90px;
    height: 3px;
    background: #355586;
    display: block;
    margin: 10px auto 30px;
    border-radius: 4px;
}

.faq-container {
    max-width: 1100px;
    margin: auto;
}

.faq-card {
    display: grid;
    grid-template-columns: 90px auto 70px;
    align-items: center;
    background: #ffffff;
    border-radius: 14px;
    padding: 14px 18px;
    border: 1px solid #355586;
    margin-bottom: 12px;
    position: relative;
}

.faq-number {
    font-weight: 800;
    color: #355586;
    font-size: 20px;
}

.faq-question {
    text-align: left;
    border: none;
    background: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
}

.faq-toggle {
    font-size: 20px;
    font-weight: 700;
    color: #355586;
}

.faq-answer {
    grid-column: 2 / 4;
    text-align: left;
    font-size: 14px;
    color: #062855;
    margin-top: 8px;
    display: none;
}

.faq-card.active .faq-answer {
    display: block;
}

.faq-card.active .faq-toggle {
    transform: rotate(45deg);
}


/* Botão inferior */

.faq-button {
    margin-top: 28px;
    display: inline-block;
    padding: 10px 26px;
    border-radius: 30px;
    background: #062855;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.cta-banner {
    background: #062855;
    background: linear-gradient(0deg, rgba(6, 40, 85, 1) 0%, rgba(53, 85, 134, 1) 100%);
    padding: 60px 30px;
    color: #fff;
}

.cta-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 15px;
    opacity: .95;
}


/* BOTÕES */

.cta-actions {
    display: flex;
    gap: 16px;
}

.cta-btn {
    background: #ffffff;
    color: #333;
    padding: 12px 26px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, .08);
}

.cta-btn:hover {
    opacity: .9;
}


/* RESPONSIVO */

@media (max-width: 900px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    .cta-actions {
        justify-content: center;
    }
}


/*footer*/

.footer {
    background-image: url(/Paulista.png);
    /* azul-grafite elegante */
    color: #dcdde3;
    padding: 28px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer p {
    font-size: 14px;
    opacity: .85;
    margin-bottom: 10px;
}


/* LINKS */

.footer-links {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f5f5f5;
    font-size: 14px;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 30px;
    transition: .25s ease;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, .06);
    color: #062855;
    /* dourado jurídico */
}


/* ÍCONES SVG */

.footer-links svg {
    width: 18px;
    height: 18px;
    opacity: .85;
}


/* RESPONSIVO */

@media (max-width: 640px) {
    .footer {
        text-align: center;
    }
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}