/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", Arial, sans-serif;
    color: #263238;
    background: #ffffff;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    width: 88%;
    max-width: 1320px;
    margin: 0 auto;
}


/* =========================================
   CORES
========================================= */

:root {
    --grafite-topo: #222628;
    --grafite-menu: #2b3032;
    --grafite-escuro: #202426;
    --grafite-claro: #383c3f;

    --bege: #c8b68e;
    --bege-claro: #eee9df;

    --branco: #ffffff;
    --fundo-claro: #f8f8f8;

    --cinza: #73777c;
    --titulo: #172637;
}


/* =========================================
   ÍCONES SVG
========================================= */

.svg-icons {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}


/* =========================================
   BARRA SUPERIOR
========================================= */

.top-bar {
    background: var(--grafite-topo);
    color: #d8d8d8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.top-bar-content {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-info {
    display: flex;
    align-items: center;

    gap: 35px;

    font-size: 12px;
}


/* =========================================
   CABEÇALHO
========================================= */

.header {
    background: var(--grafite-menu);

    position: sticky;
    top: 0;

    z-index: 999;

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.10);
}

.header-content {
    min-height: 94px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


/* =========================================
   LOGO JCS FEITA EM CÓDIGO
========================================= */

.logo-jcs {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;

    color: #ffffff;

    line-height: 1;
}

.logo-jcs-principal {
    font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;

    font-size: 29px;
    font-weight: 700;

    letter-spacing: -1.5px;

    color: #ffffff;
}

.logo-jcs-subtitulo {
    margin-top: 7px;
    margin-left: 2px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.3px;

    color: #ffffff;
}

.logo-jcs-rodape {
    margin-bottom: 30px;
}


/* =========================================
   MENU
========================================= */

.menu {
    display: flex;
    align-items: center;

    gap: 20px;
}

.menu a {
    padding: 13px 19px;

    color: #f1f1f1;

    font-size: 14px;
    font-weight: 600;

    border-radius: 8px;

    transition: 0.3s;
}

.menu a:hover,
.menu a.active {
    color: var(--bege);
    background: #414244;
}


/* =========================================
   WHATSAPP DO TOPO
========================================= */

.whatsapp-top {
    min-height: 48px;

    padding: 0 20px;

    display: flex;
    align-items: center;

    gap: 11px;

    border: 1px solid #52575a;
    border-radius: 8px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s;
}

.whatsapp-top:hover {
    border-color: var(--bege);
    color: var(--bege);
}

.whatsapp-svg {
    width: 23px;
    height: 23px;

    fill: currentColor;
}


/* =========================================
   BOTÃO MENU MOBILE
========================================= */

.mobile-button {
    display: none;

    border: none;
    background: transparent;

    cursor: pointer;
}

.mobile-button span {
    display: block;

    width: 28px;
    height: 2px;

    margin: 6px;

    background: #ffffff;
}


/* =========================================
   HERO / BANNER COM A FOTO
========================================= */

.hero {
    min-height: 570px;

    position: relative;

    overflow: hidden;

    display: flex;
    align-items: center;

    background-image:
        linear-gradient(
            90deg,
            rgba(35, 37, 40, 0.93) 0%,
            rgba(35, 37, 40, 0.88) 38%,
            rgba(35, 37, 40, 0.67) 65%,
            rgba(35, 37, 40, 0.43) 100%
        ),
        url("https://www.jcsjunioradvogados.com.br/img/slider/slider_11.jpg");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background: transparent;

    pointer-events: none;
}

.hero-pattern {
    position: absolute;

    border: 1px solid rgba(200, 182, 142, 0.07);

    border-radius: 50%;

    pointer-events: none;
}

.pattern-one {
    width: 500px;
    height: 500px;

    right: -220px;
    top: -220px;
}

.pattern-two {
    width: 350px;
    height: 350px;

    left: -190px;
    bottom: -200px;
}


/* CONTEÚDO DO BANNER */

.hero-content {
    position: relative;

    z-index: 3;

    padding: 65px 0 105px;
}

.hero-text {
    max-width: 700px;

    margin-left: 19%;
}

.hero-small-title {
    display: block;

    margin-bottom: 18px;

    color: var(--bege);

    font-size: 14px;
    font-weight: 500;

    letter-spacing: 1.5px;
}

.hero h1 {
    font-family: "Libre Baskerville", Georgia, serif;

    color: #ffffff;

    font-size: clamp(55px, 6vw, 82px);
    font-weight: 400;

    line-height: 1.05;
}

.hero h1 span {
    display: block;
}

.hero-description {
    max-width: 620px;

    margin-top: 30px;

    color: #ffffff;

    font-size: 17px;

    line-height: 1.8;
}

.hero-features {
    margin-top: 20px;

    display: grid;

    grid-template-columns: repeat(2, max-content);

    gap: 13px 45px;

    color: #f1f1f1;

    font-size: 14px;
}

.hero-features span {
    margin-right: 7px;

    color: var(--bege);
}


/* =========================================
   BOTÕES DO BANNER
========================================= */

.hero-buttons {
    margin-top: 30px;

    display: flex;

    gap: 14px;
}

.primary-button,
.outline-button {
    min-width: 210px;
    min-height: 55px;

    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s;
}

.primary-button {
    background: var(--bege);

    color: #ffffff;
}

.primary-button:hover {
    background: #b5a27a;
}

.outline-button {
    border: 1px solid var(--bege);

    color: var(--bege);
}

.outline-button:hover {
    background: var(--bege);

    color: #ffffff;
}


/* =========================================
   ACESSOS RÁPIDOS
========================================= */

.quick-access {
    position: relative;

    z-index: 20;

    margin-top: -68px;

    padding-bottom: 75px;
}

.quick-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.quick-card {
    min-height: 120px;

    padding: 28px;

    display: flex;
    align-items: center;

    gap: 18px;

    background: #ffffff;

    border-radius: 18px;

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);

    color: var(--titulo);

    transition: 0.3s;
}

.quick-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 17px 35px rgba(0, 0, 0, 0.14);
}

.quick-icon {
    width: 58px;
    height: 58px;

    min-width: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--bege-claro);

    border-radius: 13px;

    color: #ad986a;

    font-size: 22px;
}

.quick-text span {
    display: block;

    color: #999ca1;

    font-size: 11px;

    letter-spacing: 0.7px;
}

.quick-text h3 {
    margin-top: 3px;

    font-family: "Libre Baskerville", Georgia, serif;

    font-size: 20px;

    color: #122132;
}


/* =========================================
   QUEM SOMOS
========================================= */

.about {
    padding: 90px 0 110px;
}

.about-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.section-small {
    display: block;

    margin-bottom: 15px;

    color: #ad986a;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;
}

.about-left h2 {
    font-family: "Libre Baskerville", Georgia, serif;

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.25;

    color: var(--titulo);

    font-weight: 400;
}

.about-right p {
    margin-bottom: 17px;

    color: var(--cinza);

    font-size: 15px;

    line-height: 1.9;
}

.dark-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-top: 15px;

    min-height: 50px;

    padding: 0 25px;

    background: var(--grafite-menu);

    color: #ffffff;

    border-radius: 5px;

    font-size: 12px;
    font-weight: 700;

    transition: 0.3s;
}

.dark-button:hover {
    background: #3b4042;
}


/* =========================================
   DIFERENCIAIS
========================================= */

.advantages {
    padding: 100px 0;

    background: #fafafa;

    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.section-title {
    margin-bottom: 55px;

    text-align: center;
}

.section-title span {
    color: #b29d72;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;
}

.section-title h2 {
    margin-top: 10px;

    font-family: "Libre Baskerville", Georgia, serif;

    color: var(--titulo);

    font-size: clamp(36px, 4vw, 50px);
    font-weight: 400;
}

.advantages-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.advantage-card {
    min-height: 270px;

    padding: 38px 35px;

    background: #ffffff;

    border: 1px solid #e1e1e1;
    border-radius: 15px;

    text-align: center;

    transition: 0.3s;
}

.advantage-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.advantage-icon {
    width: 64px;
    height: 64px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--bege-claro);

    border-radius: 16px;

    color: #ac9868;

    font-size: 25px;
}

.advantage-card h3 {
    margin-bottom: 15px;

    font-family: "Libre Baskerville", Georgia, serif;

    color: var(--titulo);

    font-size: 19px;
}

.advantage-card p {
    color: var(--cinza);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================
   CONTATO CENTRAL
========================================= */

.contact-highlight {
    padding: 80px 0;

    background: #ffffff;
}

.contact-highlight-content {
    text-align: center;
}

.big-whatsapp {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 18px;
}

.big-whatsapp-icon {
    width: 53px;
    height: 53px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25d366;

    border-radius: 50%;
}

.big-whatsapp-svg {
    width: 30px;
    height: 30px;

    fill: #ffffff;
}

.big-whatsapp h2 {
    font-family: "Libre Baskerville", Georgia, serif;

    font-size: clamp(35px, 4vw, 47px);

    color: var(--titulo);

    font-weight: 400;
}

.big-whatsapp p {
    margin-top: 12px;

    color: var(--cinza);

    font-size: 13px;
}

.contact-actions {
    margin-top: 30px;

    display: flex;
    justify-content: center;

    gap: 15px;
}

.contact-button {
    min-height: 48px;
    min-width: 200px;

    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--grafite-menu);

    border: 1px solid var(--grafite-menu);
    border-radius: 5px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    transition: 0.3s;
}

.contact-button:hover {
    background: #3a3f41;
}

.contact-button-outline {
    background: #ffffff;

    color: var(--grafite-menu);
}

.contact-button-outline:hover {
    background: var(--grafite-menu);

    color: #ffffff;
}

.button-whatsapp-svg {
    width: 20px;
    height: 20px;

    margin-right: 9px;

    fill: currentColor;
}


/* =========================================
   SERVIÇOS
========================================= */

.services {
    padding: 90px 0;

    background: #f8f8f8;
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.service-item {
    min-height: 170px;

    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    transition: 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);

    border-color: var(--bege);
}

.service-item span {
    color: var(--bege);

    font-size: 12px;
}

.service-item h3 {
    font-family: "Libre Baskerville", Georgia, serif;

    font-size: 20px;

    color: var(--titulo);
}


/* =========================================
   RODAPÉ
========================================= */

.footer {
    padding-top: 75px;

    background: var(--grafite-topo);

    color: #ffffff;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;

    gap: 50px;

    padding-bottom: 65px;
}

.footer-about p {
    max-width: 300px;

    color: #e0e0e0;

    font-size: 13px;

    line-height: 2;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 9px;

    padding-bottom: 14px;

    color: var(--bege);

    border-bottom: 1px solid #424649;

    font-size: 13px;

    letter-spacing: 0.8px;
}

.footer-column a,
.footer-column p {
    color: #dedede;

    font-size: 13px;
}

.footer-column a {
    transition: 0.3s;
}

.footer-column a:hover {
    color: var(--bege);
}

.footer-divider {
    border-top: 1px solid #383d3f;
}


/* POLÍTICAS SEM REDES SOCIAIS */

.footer-bottom {
    min-height: 100px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-policies {
    display: flex;

    gap: 35px;
}

.footer-policies a {
    color: #cfcfcf;

    font-size: 11px;

    transition: 0.3s;
}

.footer-policies a:hover {
    color: var(--bege);
}

.copyright {
    padding: 18px;

    text-align: center;

    color: #9b9b9b;

    font-size: 11px;

    border-top: 1px solid #34383a;
}


/* =========================================
   WHATSAPP FLUTUANTE
========================================= */

.whatsapp-floating {
    position: fixed;

    right: 28px;
    bottom: 28px;

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25d366;

    border: 4px solid #ffffff;

    border-radius: 50%;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

    z-index: 9999;

    transition: 0.3s;
}

.whatsapp-floating:hover {
    transform: scale(1.08);
}

.whatsapp-floating svg {
    width: 34px;
    height: 34px;

    fill: #ffffff;
}


/* =========================================
   RESPONSIVO TABLET
========================================= */

@media (max-width: 1050px) {

    .menu,
    .whatsapp-top {
        display: none;
    }

    .mobile-button {
        display: block;
    }

    .menu.active {
        position: absolute;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        top: 94px;
        left: 0;

        width: 100%;

        padding: 20px 6%;

        background: var(--grafite-menu);
    }

    .hero-text {
        margin-left: 4%;
    }

    .quick-grid {
        grid-template-columns: 1fr;
    }

    .quick-access {
        margin-top: -40px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================
   RESPONSIVO CELULAR
========================================= */

@media (max-width: 700px) {

    .top-bar {
        display: none;
    }

    .header-content {
        min-height: 78px;
    }

    .logo-jcs-principal {
        font-size: 24px;
    }

    .logo-jcs-subtitulo {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .menu.active {
        top: 78px;
    }

    .hero {
        min-height: 630px;

        background-position: 62% center;
    }

    .hero-content {
        padding: 70px 0 115px;
    }

    .hero-text {
        margin-left: 0;
    }

    .hero h1 {
        font-size: 49px;
    }

    .hero-small-title {
        font-size: 11px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-button,
    .outline-button {
        width: 100%;
    }

    .quick-card {
        padding: 23px;
    }

    .about {
        padding: 75px 0;
    }

    .about-content {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .advantages {
        padding: 75px 0;
    }

    .contact-highlight {
        padding: 65px 0;
    }

    .big-whatsapp {
        flex-direction: column;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-button {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-bottom {
        min-height: auto;

        padding: 30px 0;

        justify-content: center;
    }

    .footer-policies {
        flex-direction: column;

        text-align: center;

        gap: 12px;
    }

    .whatsapp-floating {
        right: 18px;
        bottom: 18px;

        width: 58px;
        height: 58px;
    }

    .whatsapp-floating svg {
        width: 31px;
        height: 31px;
    }
}
/* ÍCONE DO WHATSAPP DENTRO DO CARD */

.quick-whatsapp-icon {
    width: 25px;
    height: 25px;
    fill: #ad986a;
}
/* =========================================
   DADOS DA EMPRESA NO RODAPÉ
========================================= */

.footer-company-data {
    width: 100%;

    padding: 25px 20px;

    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-company-data p {
    margin: 4px 0;

    color: rgba(255, 255, 255, 0.75);

    font-size: 12px;

    line-height: 1.6;
}

.footer-company-data strong {
    color: #ffffff;

    font-weight: 600;
}