@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');

body {
    font-family: "Fjalla One", sans-serif;
    font-style: normal;
    background-color: #f5f3ef;
    margin: 0 0 70px 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

header {
    position: fixed;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(255, 255, 255);
    padding: 15px 4vw;
    border-radius: 50px;
    border: 2px solid rgb(0, 0, 0);
    box-sizing: border-box;
}

.logo {
    font-size: 3rem;
    font-weight: 800;
    text-decoration: none;
    color: #000000;
}

nav {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgb(0, 0, 0), rgb(37, 37, 37));
    border-radius: 50px;
    padding: 8px 20px;
}

.nav-item {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    color: #6b6767;
    padding: 10px 15px;
    margin: 0 5px;
    border: 2px solid transparent;
    border-radius: 80px;
    transition: border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-item:hover,
.nav-item.active {
    border-color: rgb(172, 172, 172);
    color: #ffffff;
}

.contact-fab {
    position: fixed;
    bottom: 5px;
    left: 10px;
    background-color: #25d366;
    color: white;
    display: flex;
    align-items: center;
    padding: 10px 10px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1001;
}

.contact-fab:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}


/* ============================================
   MENU MOBILE - Botão toggle
   ============================================ */

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid #252525;
    border-radius: 8px;
    padding: 8px 20px;
    font-family: "Fjalla One", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #302e2e;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background-color: #252525;
    color: #fff;
}

/* ============================================
   MENU MOBILE - Overlay
   ============================================ */

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1998;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================
   MENU MOBILE - Painel
   ============================================ */

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    right: 20px;
    width: 280px;
    z-index: 1999;
    background: #ffffff;
    border: 1.5px solid #252525;
    border-radius: 20px;
    padding: 30px 25px;
    flex-direction: column;
    align-items: flex-end;
    transform: translateX(30px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
    display: flex;
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-logo {
    font-size: 1.8rem;
    font-weight: 300;
    color: #252424;
    margin-bottom: 25px;
    align-self: flex-end;
}

/* ============================================
   MENU MOBILE - Itens de navegação
   ============================================ */

.mobile-menu-items {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    gap: 5px;
    margin-bottom: 30px;
}

.mobile-nav-item {
    text-decoration: none;
    color: #302e2e;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 12px 0;
    text-align: right;
    position: relative;
    transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    transform: scaleX(0);
    width: 100%;
    height: 1.5px;
    background-color: #252525;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: right;
}

.mobile-nav-item:hover::after,
.mobile-nav-item.active::after {
    transform: scaleX(1);
}

.mobile-nav-item:hover {
    color: #000;
}

/* ============================================
   MENU MOBILE - Redes sociais
   ============================================ */

.mobile-menu-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    align-self: center;
    width: 100%;
}

.social-link {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-link:hover {
    color: #000;
}

/* ============================================
   MENU MOBILE - Localização
   ============================================ */

.mobile-menu-location {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    align-self: center;
}

.mobile-menu-location:hover {
    color: #000;
}


main {
    position: relative;
    min-height: 110dvh;
    height: 100dvh;
    width: 100%;
    color: white;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.main-content {
    position: relative;
    height: 100%;
    width: 100%;
}

.content-left {
    position: absolute;
    bottom: 15%;
    left: 3%;
    max-width: 50%;
}

.content-right {
    position: absolute;
    bottom: 10%;
    right: 3%;
    max-width: 20%;
    text-align: right;
}

.content-left h1 {
    max-width: 550px;
    font-weight: 500;
    letter-spacing: 0.50px;
    font-size: 3.7rem;
    margin: 0;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.content-right p {
    font-weight: 100;
    font-size: 1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.13);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1vh 2vw;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.377);
    text-align: justify;
    text-justify: inter-word;
}

.main-button {
    background-color: #ffffff;
    color: #000000;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid #000000;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease-in-out;
    margin-bottom: 15px;
}

.main-button:hover {
    transform: translateX(-5px);
}

.main-button lord-icon {
    transition: transform 0.3s ease-in-out;
    color: #333;
}

.main-button:hover lord-icon {
    transform: translateX(20px);
    color: white;
}


@media (max-width: 1100px) {

    /* Header mobile */
    nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    header {
        padding: 12px 2vw;
    }

    .logo {
        font-size: 1.6rem;
    }

    /* Main content - empilhar verticalmente */
    .main-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 5%;
        box-sizing: border-box;
    }

    .content-left {
        position: static;
        max-width: 100%;
    }

    .content-right {
        position: static;
        max-width: 100%;
        text-align: left;
        margin-top: 15px;
    }

    .content-left h1 {
        font-size: 2.2rem;
        max-width: 100%;
    }

    .content-right p {
        font-size: 0.95rem;
        padding: 12px 16px;
    }

    .main-button {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

}

@media (max-width: 768px) {
    header {
        left: 10px;
        right: 10px;
        padding: 10px 20px;
        transform: none;
    }

    .mobile-menu {
        right: 10px;
        width: 260px;
    }

    .main-content {
        padding: 0 20px;
    }

    .content-left h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    .content-right p {
        font-size: 0.95rem;
        padding: 10px 14px;
    }

    .main-button {
        padding: 12px 22px;
        font-size: 0.9rem;
        border-radius: 15px;
    }

    .contact-fab span {
        display: none;
    }

    .contact-fab {
        padding: 7px;
        border-radius: 50%;
        min-width: 0;
        min-height: 0;
        left: auto;
        right: 10px;
    }

    .contact-fab lord-icon {
        margin-right: 0;
        width: 28px !important;
        height: 28px !important;
    }
}

@media (max-width: 480px) {
    header {
        left: 0;
        right: 0;
        padding: 10px 5vw;
        transform: none;
    }

    .mobile-menu {
        right: 8px;
        width: 240px;
        padding: 25px 15px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .main-content {
        padding: 0 15px;
    }

    .content-left h1 {
        font-size: 1.7rem;
    }

    .content-right p {
        font-size: 0.9rem;
        padding: 10px 12px;
    }

    .main-button {
        padding: 10px 18px;
        font-size: 0.8rem;
    }


    .mobile-nav-item {
        font-size: 1rem;
    }

    .social-link {
        font-size: 0.8rem;
    }
}





/* =========================================================
   SERVICES SECTION
   PREMIUM / EDITORIAL
========================================================= */

.services-section {
    --services-dark: #172231;
    --services-dark-2: #202d3c;
    --services-gold: #a47b43;
    --services-gold-light: #c39b63;
    --services-bg: #f5f3ef;
    --services-white: #ffffff;
    --services-text: #62615d;
    --services-border: rgba(23, 34, 49, 0.13);

    position: relative;

    width: 100%;

    padding: clamp(100px, 11vw, 180px) 0;

    background: var(--services-bg);

    overflow: hidden;
}


/* =========================================================
   FUNDO DECORATIVO
========================================================= */

.services-section::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: -480px;
    right: -300px;

    border: 1px solid rgba(164, 123, 67, 0.12);

    border-radius: 50%;

    pointer-events: none;
}


.services-section::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -350px;
    bottom: -300px;

    border: 1px solid rgba(23, 34, 49, 0.06);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

.services-header {
    position: relative;
    z-index: 2;

    width: min(92%, 1600px);

    margin: 0 auto 90px;

    text-align: center;
}


.services-eyebrow {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 18px;

    margin-bottom: 30px;

    font-size: 0.65rem;

    font-weight: 700;

    letter-spacing: 0.2em;

    color: var(--services-dark);
}


.services-eyebrow::before {
    content: "";

    width: 45px;
    height: 1px;

    background: var(--services-gold);
}


.services-header h2 {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    font-size: clamp(3rem, 6.5vw, 7rem);

    line-height: 0.92;

    letter-spacing: -0.065em;

    font-weight: 500;

    color: var(--services-dark);
}


.services-header h2 span {
    display: inline;

    font-family: Georgia, "Times New Roman", serif;

    font-style: italic;

    font-weight: 400;

    color: var(--services-gold);
}


.services-subtitle {
    width: 100%;
    max-width: 1050px;

    margin: 35px auto 0;

    font-size: clamp(0.95rem, 1.2vw, 1.1rem);

    line-height: 1.8;

    color: var(--services-text);

    text-align: center;
}


/* =========================================================
   GRID
========================================================= */

.services-grid {
    position: relative;

    z-index: 2;

    width: min(90%, 1350px);

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--services-border);

    border-left: 1px solid var(--services-border);
}


/* =========================================================
   CARD
========================================================= */

.service-card {
    position: relative;

    min-height: 390px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: rgba(255, 255, 255, 0.38);

    border-right: 1px solid var(--services-border);

    border-bottom: 1px solid var(--services-border);

    text-decoration: none;

    color: var(--services-dark);

    overflow: hidden;

    transition:
        background 0.5s ease,
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}


/* linha dourada superior */

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 2px;

    background: var(--services-gold);

    transition:
        width 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}


/* fundo do hover */

.service-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background: var(--services-dark);

    transform: translateY(101%);

    transition:
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);

    z-index: 0;
}


.service-card:hover {
    background: var(--services-white);

    transform: translateY(-4px);

    z-index: 5;
}


.service-card:hover::before {
    width: 100%;
}


.service-card:hover::after {
    transform: translateY(0);
}


/* =========================================================
   CARD TOP
========================================================= */

.service-card-top {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;
}


.service-number {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 0.8rem;

    font-style: italic;

    color: var(--services-gold);

    transition:
        color 0.4s ease;
}


.service-card:hover .service-number {
    color: var(--services-gold-light);
}


/* =========================================================
   ÍCONE
========================================================= */

.service-icon {
    position: relative;

    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--services-border);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.35);

    transition:
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.4s ease,
        border-color 0.4s ease;
}


.service-icon lord-icon {
    width: 25px !important;
    height: 25px !important;

    transition:
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}


.service-card:hover .service-icon {
    transform: rotate(8deg) scale(1.12);

    background: rgba(255, 255, 255, 0.1);

    border-color: rgba(195, 155, 99, 0.5);
}


.service-card:hover .service-icon lord-icon {
    transform: rotate(-8deg) scale(1.15);
}


/* =========================================================
   CONTEÚDO
========================================================= */

.service-card-content {
    position: relative;

    z-index: 2;

    margin-top: auto;

    padding-top: 50px;
}


.service-card-content h3 {
    max-width: 320px;

    margin: 0 0 18px;

    font-size: clamp(1.25rem, 1.6vw, 1.65rem);

    line-height: 1.15;

    letter-spacing: -0.035em;

    font-weight: 600;

    color: var(--services-dark);

    transition:
        color 0.4s ease,
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}


.service-card-content p {
    max-width: 340px;

    margin: 0;

    font-size: 0.83rem;

    line-height: 1.75;

    color: var(--services-text);

    transition:
        color 0.4s ease;
}


.service-card:hover .service-card-content h3 {
    color: var(--services-white);

    transform: translateX(4px);
}


.service-card:hover .service-card-content p {
    color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   CTA DO CARD
========================================================= */

.service-cta {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    margin-top: 35px;

    padding-top: 18px;

    border-top: 1px solid var(--services-border);

    font-size: 0.68rem;

    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    color: var(--services-dark);

    transition:
        border-color 0.4s ease,
        color 0.4s ease;
}


.service-card:hover .service-cta {
    border-color: rgba(255, 255, 255, 0.18);

    color: var(--services-white);
}


/* =========================================================
   SETA
========================================================= */

.service-arrow {
    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--services-border);

    border-radius: 50%;

    font-size: 0.9rem;

    transition:
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.4s ease,
        border-color 0.4s ease;
}


.service-card:hover .service-arrow {
    transform: translate(4px, -4px) rotate(0deg);

    border-color: rgba(255, 255, 255, 0.35);

    background: var(--services-gold);
}


/* =========================================================
   CTA FINAL
========================================================= */

.services-cta-section {
    position: relative;

    z-index: 2;

    width: min(90%, 1350px);

    margin: 110px auto 0;

    padding: clamp(50px, 7vw, 90px);

    background: var(--services-dark);

    overflow: hidden;
}


/* detalhe dourado */

.services-cta-section::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -180px;
    top: -220px;

    border: 1px solid rgba(195, 155, 99, 0.22);

    border-radius: 50%;
}


.services-cta-section::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -60px;
    bottom: -150px;

    border: 1px solid rgba(195, 155, 99, 0.13);

    border-radius: 50%;
}


.services-cta-content {
    position: relative;

    z-index: 2;

    max-width: 850px;
}


.services-cta-eyebrow {
    display: block;

    margin-bottom: 25px;

    font-size: 0.62rem;

    font-weight: 700;

    letter-spacing: 0.2em;

    color: var(--services-gold-light);
}


.services-cta-section p {
    max-width: 800px;

    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(1.5rem, 3vw, 2.8rem);

    line-height: 1.25;

    letter-spacing: -0.025em;

    color: var(--services-white);
}


/* =========================================================
   BOTÃO WHATSAPP
========================================================= */

.services-whatsapp-btn {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 30px;

    margin-top: 45px;

    padding: 18px 22px;

    background: var(--services-white);

    color: var(--services-dark);

    text-decoration: none;

    font-size: 0.68rem;

    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    overflow: hidden;

    transition:
        color 0.4s ease,
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


.services-whatsapp-btn::before {
    content: "";

    position: absolute;

    inset: 0;

    background: var(--services-gold);

    transform: translateX(-101%);

    transition:
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}


.services-whatsapp-btn span {
    position: relative;

    z-index: 2;
}


.services-whatsapp-btn:hover {
    color: var(--services-white);

    transform: translateY(-4px);
}


.services-whatsapp-btn:hover::before {
    transform: translateX(0);
}


.services-btn-arrow {
    font-size: 1rem;

    transition:
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}


.services-whatsapp-btn:hover .services-btn-arrow {
    transform: translate(4px, -4px);
}


/* =========================================================
   HOVER EXTRA — CARD
========================================================= */

@media (hover: hover) {

    .service-card:hover .service-icon {
        box-shadow:
            0 10px 35px rgba(0, 0, 0, 0.12);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .services-header {
        margin-bottom: 60px;
    }


    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .service-card {
        min-height: 360px;
    }


    .services-cta-section {
        margin-top: 80px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .services-section {
        padding: 80px 0;
    }


    .services-header {
        width: 90%;

        margin-bottom: 55px;
    }


    .services-eyebrow {
        font-size: 0.56rem;

        letter-spacing: 0.14em;

        gap: 12px;
    }


    .services-eyebrow::before {
        width: 25px;
    }


    .services-header h2 {
        font-size: clamp(2.6rem, 12vw, 4.5rem);

        line-height: 0.94;
    }


    .services-header h2 span {
        display: inline;
    }


    .services-subtitle {
        margin-top: 25px;

        font-size: 0.88rem;

        line-height: 1.75;
    }


    .services-grid {
        width: 90%;

        grid-template-columns: 1fr;
    }


    .service-card {
        min-height: 350px;

        padding: 25px;
    }


    .service-card-content {
        padding-top: 45px;
    }


    .service-card-content h3 {
        font-size: 1.35rem;
    }


    .service-card-content p {
        font-size: 0.82rem;
    }


    .service-icon {
        width: 48px;
        height: 48px;
    }


    .service-icon lord-icon {
        width: 23px !important;
        height: 23px !important;
    }


    .services-cta-section {
        width: 90%;

        margin-top: 65px;

        padding: 45px 28px;
    }


    .services-cta-section p {
        font-size: clamp(1.45rem, 7vw, 2rem);

        line-height: 1.3;
    }


    .services-whatsapp-btn {
        width: 100%;

        box-sizing: border-box;

        justify-content: space-between;

        gap: 15px;

        margin-top: 35px;

        padding: 17px 18px;

        font-size: 0.6rem;
    }

}


/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 420px) {

    .services-header h2 {
        font-size: 2.65rem;
    }


    .service-card {
        min-height: 330px;

        padding: 22px;
    }


    .service-number {
        font-size: 0.72rem;
    }


    .service-card-content h3 {
        font-size: 1.25rem;
    }


    .service-card-content p {
        font-size: 0.78rem;

        line-height: 1.7;
    }


    .services-cta-section {
        padding: 40px 22px;
    }


    .services-cta-section p {
        font-size: 1.45rem;
    }

}


/* =========================================================
   REDUÇÃO DE MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .service-card,
    .service-card::before,
    .service-card::after,
    .service-icon,
    .service-icon lord-icon,
    .service-arrow,
    .services-whatsapp-btn,
    .services-whatsapp-btn::before,
    .services-btn-arrow {
        transition: none !important;
    }


    .service-card:hover {
        transform: none;
    }


    .service-card:hover .service-icon,
    .service-card:hover .service-icon lord-icon,
    .service-card:hover .service-arrow,
    .services-whatsapp-btn:hover .services-btn-arrow {
        transform: none;
    }

}





/* =========================================================
   SOBRE CAROLINA
   PREMIUM EDITORIAL
========================================================= */

.sobre-section {
    --sobre-dark: #172231;
    --sobre-dark-soft: #273443;
    --sobre-gold: #a47b43;
    --sobre-gold-light: #c39b63;
    --sobre-bg: #f5f3ef;
    --sobre-white: #ffffff;
    --sobre-text: #5d5b57;
    --sobre-border: rgba(23, 34, 49, 0.14);

    position: relative;

    width: 100%;

    padding: clamp(100px, 12vw, 190px) 0;

    background: var(--sobre-bg);

    overflow: hidden;
}


/* =========================================================
   DECORAÇÕES DE FUNDO
========================================================= */

.sobre-section::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: -420px;
    left: -350px;

    border-radius: 50%;

    border: 1px solid rgba(164, 123, 67, 0.1);

    pointer-events: none;
}


.sobre-section::after {
    content: "";

    position: absolute;

    width: 900px;
    height: 900px;

    right: -550px;
    bottom: -600px;

    border-radius: 50%;

    border: 1px solid rgba(23, 34, 49, 0.06);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.sobre-container {
    position: relative;

    z-index: 2;

    width: min(92%, 1450px);

    margin: 0 auto;

    display: grid;

    grid-template-columns: minmax(420px, 0.95fr) minmax(430px, 1fr);

    gap: clamp(70px, 9vw, 150px);

    align-items: center;
}


/* =========================================================
   IMAGEM
========================================================= */

.sobre-image-wrapper {
    position: relative;

    padding: 30px 30px 30px 0;
}


.sobre-image-box {
    position: relative;

    width: 100%;

    height: clamp(650px, 58vw, 900px);

    overflow: hidden;

    background: #ddd8cf;
}


.sobre-image-box img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}


.sobre-image-box:hover img {
    transform: scale(1.035);
}


/* =========================================================
   LINHAS DECORATIVAS
========================================================= */

.corner-decoration {
    position: absolute;

    width: 95px;
    height: 95px;

    pointer-events: none;

    z-index: 4;
}


.corner-top-left {
    top: 0;
    left: 0;

    border-top: 1px solid var(--sobre-gold);
    border-left: 1px solid var(--sobre-gold);
}


.corner-bottom-right {
    right: 0;
    bottom: 0;

    border-right: 1px solid var(--sobre-gold);
    border-bottom: 1px solid var(--sobre-gold);
}


/* =========================================================
   LABEL SOBRE IMAGEM
========================================================= */

.sobre-image-label {
    position: absolute;

    right: 25px;
    bottom: 25px;

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 3px;

    padding: 14px 18px;

    background: rgba(23, 34, 49, 0.88);

    backdrop-filter: blur(15px);

    color: white;
}


.sobre-image-label span {
    font-size: 0.58rem;

    letter-spacing: 0.2em;

    color: rgba(255, 255, 255, 0.65);
}


.sobre-image-label strong {
    font-size: 0.72rem;

    letter-spacing: 0.12em;

    font-weight: 600;

    color: var(--sobre-gold-light);
}


/* =========================================================
   CONTEÚDO
========================================================= */

.sobre-content {
    max-width: 700px;

    padding: 20px 0;
}


/* =========================================================
   TOPLINE
========================================================= */

.sobre-topline {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-bottom: 35px;
}


.sobre-index {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 0.85rem;

    font-style: italic;

    color: var(--sobre-gold);
}


.sobre-label {
    display: flex;

    align-items: center;

    gap: 14px;

    font-size: 0.68rem;

    font-weight: 700;

    letter-spacing: 0.2em;

    color: var(--sobre-dark);
}


.sobre-label::before {
    content: "";

    width: 35px;
    height: 1px;

    background: var(--sobre-gold);
}


/* =========================================================
   TÍTULO
========================================================= */

.sobre-heading {
    margin: 0;

    max-width: 650px;

    font-size: clamp(3rem, 5.5vw, 6rem);

    line-height: 0.92;

    letter-spacing: -0.065em;

    font-weight: 500;

    color: var(--sobre-dark);
}


.sobre-heading span {
    display: block;

    margin-top: 15px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 0.52em;

    line-height: 1.15;

    font-style: italic;

    font-weight: 400;

    letter-spacing: -0.025em;

    color: var(--sobre-gold);
}


/* =========================================================
   DIVISOR
========================================================= */

.sobre-divider {
    width: 100%;

    height: 1px;

    margin: 45px 0;

    background: var(--sobre-border);

    position: relative;
}


.sobre-divider::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 90px;
    height: 1px;

    background: var(--sobre-gold);
}


/* =========================================================
   TEXTOS
========================================================= */

.sobre-text-wrapper {
    max-width: 650px;
}


.sobre-text {
    margin: 0 0 22px;

    font-size: clamp(0.9rem, 1vw, 1rem);

    line-height: 1.9;

    color: var(--sobre-text);
}


.sobre-text:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ESTATÍSTICAS
========================================================= */

.sobre-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    margin-top: 55px;

    border-top: 1px solid var(--sobre-border);

    border-bottom: 1px solid var(--sobre-border);
}


.sobre-stat {
    min-height: 125px;

    padding: 25px 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-right: 1px solid var(--sobre-border);
}


.sobre-stat:last-child {
    border-right: 0;
}


.sobre-stat strong {
    display: block;

    margin-bottom: 7px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(2rem, 3vw, 3rem);

    line-height: 1;

    font-weight: 400;

    color: var(--sobre-dark);
}


.sobre-stat span {
    font-size: 0.62rem;

    line-height: 1.4;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    color: #77736d;
}


/* =========================================================
   CTA
========================================================= */

.sobre-cta {
    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    min-width: 250px;

    margin-top: 40px;

    padding: 18px 21px;

    border: 1px solid var(--sobre-dark);

    background: transparent;

    color: var(--sobre-dark);

    text-decoration: none;

    font-size: 0.73rem;

    font-weight: 700;

    letter-spacing: 0.06em;

    overflow: hidden;

    transition:
        color 0.45s ease,
        border-color 0.45s ease;
}


.sobre-cta::before {
    content: "";

    position: absolute;

    inset: 0;

    background: var(--sobre-dark);

    transform: translateX(-101%);

    transition:
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);

    z-index: 0;
}


.sobre-cta span {
    position: relative;

    z-index: 2;
}


.sobre-cta:hover {
    color: white;

    border-color: var(--sobre-dark);
}


.sobre-cta:hover::before {
    transform: translateX(0);
}


.sobre-cta-arrow {
    font-size: 1rem;

    transition:
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}


.sobre-cta:hover .sobre-cta-arrow {
    transform: translate(4px, -4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .sobre-container {
        grid-template-columns: 1fr;

        gap: 70px;
    }


    .sobre-image-wrapper {
        width: min(100%, 750px);

        padding-right: 25px;
    }


    .sobre-content {
        max-width: 850px;
    }


    .sobre-text-wrapper {
        max-width: 800px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .sobre-section {
        padding: 80px 0;
    }


    .sobre-container {
        width: 90%;

        gap: 55px;
    }


    .sobre-image-wrapper {
        padding: 15px 15px 15px 0;
    }


    .sobre-image-box {
        height: 620px;
    }


    .corner-decoration {
        width: 60px;
        height: 60px;
    }


    .sobre-image-label {
        right: 14px;
        bottom: 14px;

        padding: 11px 13px;
    }


    .sobre-image-label span {
        font-size: 0.5rem;
    }


    .sobre-image-label strong {
        font-size: 0.6rem;
    }


    .sobre-topline {
        margin-bottom: 25px;

        gap: 14px;
    }


    .sobre-label {
        font-size: 0.57rem;

        letter-spacing: 0.14em;
    }


    .sobre-label::before {
        width: 22px;
    }


    .sobre-heading {
        font-size: clamp(3rem, 14vw, 5rem);

        line-height: 0.92;
    }


    .sobre-heading span {
        margin-top: 12px;

        font-size: 0.48em;
    }


    .sobre-divider {
        margin: 35px 0;
    }


    .sobre-text {
        font-size: 0.9rem;

        line-height: 1.8;

        margin-bottom: 18px;
    }


    .sobre-stats {
        margin-top: 40px;
    }


    .sobre-stat {
        min-height: 105px;

        padding: 18px 10px;
    }


    .sobre-stat strong {
        font-size: 1.8rem;
    }


    .sobre-stat span {
        font-size: 0.5rem;

        letter-spacing: 0.05em;
    }


    .sobre-cta {
        width: 100%;

        box-sizing: border-box;

        margin-top: 30px;
    }
}


/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 430px) {

    .sobre-section {
        padding: 65px 0;
    }


    .sobre-container {
        width: 88%;
    }


    .sobre-image-box {
        height: 560px;
    }


    .sobre-heading {
        font-size: 2.8rem;
    }


    .sobre-stats {
        grid-template-columns: 1fr;
    }


    .sobre-stat {
        min-height: auto;

        padding: 17px 15px;

        border-right: 0;

        border-bottom: 1px solid var(--sobre-border);
    }


    .sobre-stat:last-child {
        border-bottom: 0;
    }


    .sobre-stat strong {
        font-size: 2rem;
    }
}


/* =========================================================
   REDUÇÃO DE MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .sobre-image-box img,
    .sobre-cta,
    .sobre-cta::before,
    .sobre-cta-arrow {
        transition: none;
    }


    .sobre-image-box:hover img {
        transform: none;
    }


    .sobre-cta:hover .sobre-cta-arrow {
        transform: none;
    }
}




/* ===================================================
   SECTION ESTATÍSTICA
=================================================== */

.estatistica-section {
    position: relative;
    width: calc(100% - 40px);
    max-width: 1400px;
    margin: 30px auto;
    padding: 40px 45px;
    border-radius: 28px;
    overflow: hidden;
    background: #030303;
    border: 1px solid rgba(255, 255, 255, .05);
    isolation: isolate;
}


/* ===================================================
   CIRCULO DECORATIVO
=================================================== */

.estatistica-section::after {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    right: -420px;
    bottom: -650px;
    border-radius: 50%;
    border: 12px solid rgba(255, 255, 255, .04);
    z-index: -1;
}

/* ===================================================
   LAYOUT
=================================================== */

.estatistica-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: center;
}

/* ===================================================
   TEXTO ESQUERDA
=================================================== */

.estatistica-left h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -2px;
    max-width: 700px;
}

.estatistica-line {
    width: 100%;
    max-width: 450px;
    height: 1px;
    margin: 22px 0 18px;
    background:
        linear-gradient(to right,
            rgba(255, 255, 255, 0.616),
            transparent);
}

.estatistica-left p {
    color: rgba(255, 255, 255, 0.719);
    font-size: .9rem;
    line-height: 1.7;
    max-width: 460px;
}

/* ===================================================
   CARDS
=================================================== */

.estatistica-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.estatistica-card {
    position: relative;
    padding: 18px 22px;
    border-radius: 22px;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .05),
            rgba(255, 255, 255, .02));

    border: 1px solid rgba(255, 255, 255, 0.116);
    overflow: hidden;
    transition: all 0.5s ease;
}

.estatistica-card:hover {
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .1),
            rgba(255, 255, 255, .04));

    border: 1px solid rgba(255, 255, 255, 0.836);
}

.estatistica-card:nth-child(2) {
    margin-left: -25px;
}

.estatistica-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, .03),
            transparent);
}

/* ===================================================
   TOPO CARD
=================================================== */

.estatistica-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* ===================================================
   TEXTO CARD
=================================================== */

.estatistica-text {
    flex: 1;
}

.estatistica-text p {
    color: rgba(255, 255, 255, 0.61);
    font-size: .82rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.estatistica-text h3 {
    color: #ffffff;

    font-size: 1.05rem;

    font-weight: 600;
}

/* ===================================================
   ICON
=================================================== */

.estatistica-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .12),
            rgba(255, 255, 255, .04));

    border: 1px solid rgba(255, 255, 255, 0.192);
    transition: all 0.5s ease;
}

.estatistica-icon i {
    color: #fff;
    font-size: 1rem;
    transition: color 0.5s ease;
}

.estatistica-card:hover .estatistica-icon {
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .2),
            rgba(255, 255, 255, .06));

    border: 1px solid rgba(255, 255, 255, 0.836);
}


/* ===================================================
   TABLET
=================================================== */

@media(max-width: 1100px) {

    .estatistica-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .estatistica-card:nth-child(2) {
        margin-left: 0;
    }

    .estatistica-left h2 {
        max-width: 100%;
    }

    .estatistica-cards {
        max-width: 100%;
    }
}

/* ===================================================
   MOBILE
=================================================== */

@media(max-width: 768px) {

    .estatistica-section {
        width: calc(100% - 50px) !important;
        padding: 30px 20px;
        border-radius: 22px;
    }

    .estatistica-left h2 {
        font-size: 2rem;

        letter-spacing: -1px;
    }

    .estatistica-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
}

/* ===================================================
   MOBILE PEQUENO
=================================================== */

@media(max-width: 480px) {

    .estatistica-section {
        width: calc(100% - 16px);

        padding: 24px 14px;

        margin: 15px auto;
    }

    .estatistica-left h2 {
        font-size: 1.6rem;

        line-height: 1.1;
    }

    .estatistica-left p {
        font-size: .8rem;
    }

    .estatistica-card {
        padding: 16px;
    }

    .estatistica-text p {
        font-size: .75rem;
    }

    .estatistica-text h3 {
        font-size: .95rem;
    }

    .estatistica-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .estatistica-icon i {
        font-size: .9rem;
    }
}




/* =========================================================
   ADVOCACIA TRABALHISTA
   PREMIUM / EDITORIAL / AWWWARDS
========================================================= */

.father-lawyer-section {
    --law-dark: #172231;
    --law-dark-2: #202d3d;
    --law-gold: #a47b43;
    --law-gold-light: #c29a62;
    --law-bg: #f5f3ef;
    --law-white: #ffffff;
    --law-text: #55534f;
    --law-border: rgba(23, 34, 49, 0.14);

    position: relative;
    width: 100%;
    overflow: hidden;

    padding: clamp(100px, 11vw, 180px) 0;

    background: var(--law-bg);

    color: var(--law-dark);
}


/* =========================================================
   TEXTURA / NOISE
========================================================= */

.father-lawyer-noise {
    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: 0.035;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");

    z-index: 0;
}


/* =========================================================
   DECORAÇÕES DE FUNDO
========================================================= */

.father-lawyer-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -260px;
    right: -200px;

    border-radius: 50%;

    background: rgba(164, 123, 67, 0.055);

    filter: blur(20px);

    pointer-events: none;
}


.father-lawyer-section::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    bottom: -240px;
    left: -220px;

    border-radius: 50%;

    background: rgba(23, 34, 49, 0.035);

    filter: blur(25px);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.father-lawyer-container {
    position: relative;

    z-index: 2;

    width: min(92%, 1480px);

    margin: 0 auto;
}


/* =========================================================
   INTRO
========================================================= */

.father-lawyer-intro {
    max-width: 1000px;

    margin-bottom: clamp(70px, 9vw, 130px);
}


.father-lawyer-eyebrow {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 28px;

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    color: var(--law-gold);
}


.eyebrow-line {
    width: 38px;
    height: 1px;

    background: var(--law-gold);

    flex-shrink: 0;
}


.father-lawyer-title {
    max-width: 950px;

    margin: 0;

    font-size: clamp(3.2rem, 7vw, 7.8rem);

    line-height: 0.9;

    font-weight: 500;

    letter-spacing: -0.065em;

    color: var(--law-dark);
}


.father-lawyer-title span {
    color: var(--law-gold);

    font-family: Georgia, "Times New Roman", serif;

    font-style: italic;

    font-weight: 400;
}


.father-lawyer-lead {
    max-width: 720px;

    margin: 38px 0 0;

    font-size: clamp(1rem, 1.25vw, 1.18rem);

    line-height: 1.85;

    color: var(--law-text);
}


/* =========================================================
   COMPOSIÇÃO PRINCIPAL
========================================================= */

.father-lawyer-main {
    display: grid;

    grid-template-columns:
        minmax(430px, 0.9fr)
        minmax(400px, 1fr);

    gap: clamp(60px, 8vw, 150px);

    align-items: center;

    margin-bottom: clamp(120px, 14vw, 220px);
}


/* =========================================================
   IMAGENS
========================================================= */

.father-lawyer-image {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #e8e4dc;
}


/*
    IMAGEM PRINCIPAL

    Aumentada bastante.
*/

.father-lawyer-image.image-primary {
    height: clamp(680px, 58vw, 960px);
}


/*
    IMAGEM SECUNDÁRIA

    Ainda maior e deslocada para criar
    composição editorial.
*/

.father-lawyer-image.image-secondary {
    height: clamp(720px, 62vw, 1040px);
}


/* =========================================================
   IMAGENS INTERNAS
========================================================= */

.father-lawyer-image img {
    display: block;

    width: 100%;
    height: 100%;

    /*
        CONTÉM A IMAGEM INTEIRA.

        Não usamos "cover" porque ele cortaria
        as extremidades da fotografia.
    */

    object-fit: contain;

    object-position: center;

    background: #e8e4dc;

    transition:
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}


.father-lawyer-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   MOLDURA INTERNA
========================================================= */

.father-lawyer-image::before {
    content: "";

    position: absolute;

    inset: 18px;

    border: 1px solid rgba(255, 255, 255, 0.45);

    z-index: 3;

    pointer-events: none;

    opacity: 0;

    transition: opacity 0.5s ease;
}


.father-lawyer-image:hover::before {
    opacity: 1;
}


/* =========================================================
   NÚMERO DA IMAGEM
========================================================= */

.image-number {
    position: absolute;

    top: 24px;
    left: 24px;

    z-index: 5;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, 0.6);

    background: rgba(23, 34, 49, 0.78);

    color: white;

    font-size: 0.68rem;

    letter-spacing: 0.1em;

    backdrop-filter: blur(12px);
}


/* =========================================================
   CAPTION DA PRIMEIRA IMAGEM
========================================================= */

.image-caption {
    position: absolute;

    left: 24px;
    right: 24px;
    bottom: 24px;

    z-index: 5;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    padding: 14px 17px;

    background: rgba(23, 34, 49, 0.86);

    backdrop-filter: blur(12px);

    color: white;

    font-size: 0.65rem;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


/* =========================================================
   CONTEÚDO PRINCIPAL
========================================================= */

.father-lawyer-content {
    max-width: 650px;
}


.content-index {
    display: block;

    margin-bottom: 25px;

    font-size: 0.68rem;

    font-weight: 700;

    letter-spacing: 0.18em;

    color: var(--law-gold);
}


.father-lawyer-content h3,
.father-lawyer-services-intro h3 {
    margin: 0;

    font-size: clamp(2.2rem, 4vw, 4.4rem);

    line-height: 1.02;

    font-weight: 500;

    letter-spacing: -0.045em;

    color: var(--law-dark);
}


.father-lawyer-content p,
.father-lawyer-services-intro p {
    margin: 25px 0 0;

    font-size: 1rem;

    line-height: 1.85;

    color: var(--law-text);
}


/* =========================================================
   CTA PRINCIPAL
========================================================= */

.father-lawyer-main-cta {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    margin-top: 40px;

    padding-bottom: 9px;

    border-bottom: 1px solid var(--law-dark);

    color: var(--law-dark);

    text-decoration: none;

    font-size: 0.82rem;

    font-weight: 700;

    letter-spacing: 0.05em;

    transition:
        gap 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        color 0.3s ease,
        border-color 0.3s ease;
}


.father-lawyer-main-cta:hover {
    gap: 28px;

    color: var(--law-gold);

    border-color: var(--law-gold);
}


.cta-arrow {
    font-size: 1.1rem;

    transition:
        transform 0.4s ease;
}


.father-lawyer-main-cta:hover .cta-arrow {
    transform: translate(3px, -3px);
}


/* =========================================================
   SEGUNDA COMPOSIÇÃO
========================================================= */

.father-lawyer-secondary {
    display: grid;

    grid-template-columns:
        minmax(350px, 0.8fr)
        minmax(430px, 1fr);

    gap: clamp(60px, 9vw, 160px);

    align-items: center;

    margin-bottom: clamp(120px, 14vw, 200px);
}


/*
    Faz a segunda imagem ficar
    visualmente deslocada.
*/

.father-lawyer-secondary .image-secondary {
    margin-top: 80px;
}


/* =========================================================
   FLOATING LABEL
========================================================= */

.image-floating-label {
    position: absolute;

    left: 28px;
    bottom: 28px;

    z-index: 5;

    padding: 14px 18px;

    background: rgba(255, 255, 255, 0.94);

    color: var(--law-dark);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 0.9rem;

    font-style: italic;

    line-height: 1.2;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}


.image-floating-label strong {
    display: block;

    margin-top: 3px;

    font-family: inherit;

    font-size: 1.05rem;

    color: var(--law-gold);
}


/* =========================================================
   SERVIÇOS
========================================================= */

.father-lawyer-services {
    border-top: 1px solid var(--law-border);

    padding-top: 35px;

    margin-bottom: clamp(100px, 12vw, 170px);
}


.services-top {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;
}


.services-top p {
    max-width: 420px;

    margin: 0;

    font-size: 0.9rem;

    line-height: 1.7;

    color: var(--law-text);
}


/* =========================================================
   GRID DE SERVIÇOS
========================================================= */

.father-lawyer-services-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid var(--law-border);

    border-left: 1px solid var(--law-border);
}


/* =========================================================
   CARD
========================================================= */

.father-service-card {
    position: relative;

    min-height: 270px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    border-right: 1px solid var(--law-border);

    border-bottom: 1px solid var(--law-border);

    background: transparent;

    transition:
        background 0.5s ease,
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}


.father-service-card:hover {
    background: #ffffff;

    transform: translateY(-5px);

    z-index: 2;

    box-shadow:
        0 25px 70px rgba(23, 34, 49, 0.08);
}


/* =========================================================
   NÚMERO DO SERVIÇO
========================================================= */

.service-number {
    display: block;

    margin-bottom: 45px;

    font-size: 0.65rem;

    font-weight: 700;

    letter-spacing: 0.16em;

    color: var(--law-gold);
}


/* =========================================================
   CONTEÚDO CARD
========================================================= */

.service-card-content {
    flex: 1;
}


.service-card-content h4 {
    margin: 0;

    font-size: clamp(1.15rem, 1.6vw, 1.55rem);

    line-height: 1.2;

    font-weight: 600;

    letter-spacing: -0.025em;

    color: var(--law-dark);
}


.service-card-content p {
    max-width: 430px;

    margin: 13px 0 0;

    font-size: 0.88rem;

    line-height: 1.65;

    color: var(--law-text);
}


/* =========================================================
   LINK DO CARD
========================================================= */

.service-card-link {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    width: 100%;

    margin-top: 30px;

    padding-top: 16px;

    border-top: 1px solid var(--law-border);

    color: var(--law-dark);

    text-decoration: none;

    font-size: 0.7rem;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.service-card-link span:last-child {
    font-size: 1rem;

    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


.father-service-card:hover .service-card-link span:last-child {
    transform: translate(4px, -4px);
}


.service-card-link:hover {
    color: var(--law-gold);
}


/* =========================================================
   CTA FINAL
========================================================= */

.father-lawyer-final {
    position: relative;

    display: grid;

    grid-template-columns: 80px 1fr auto;

    align-items: center;

    gap: 40px;

    padding: clamp(45px, 6vw, 80px);

    background: var(--law-dark);

    color: white;

    overflow: hidden;
}


.father-lawyer-final::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -200px;
    top: -220px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.1);
}


.father-lawyer-final::after {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -280px;
    top: -295px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.06);
}


.final-number {
    position: relative;

    z-index: 2;

    color: var(--law-gold);

    font-size: 0.7rem;

    font-weight: 700;

    letter-spacing: 0.15em;
}


.final-content {
    position: relative;

    z-index: 2;
}


.final-content > span {
    display: block;

    margin-bottom: 15px;

    font-size: 0.65rem;

    letter-spacing: 0.18em;

    color: var(--law-gold);
}


.final-content h3 {
    max-width: 750px;

    margin: 0;

    font-size: clamp(2rem, 4vw, 4.3rem);

    line-height: 0.98;

    font-weight: 500;

    letter-spacing: -0.045em;

    color: white;
}


/* =========================================================
   CTA FINAL BOTÃO
========================================================= */

.father-lawyer-final-cta {
    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 17px 23px;

    border: 1px solid rgba(255, 255, 255, 0.3);

    color: white;

    text-decoration: none;

    font-size: 0.75rem;

    font-weight: 700;

    letter-spacing: 0.05em;

    white-space: nowrap;

    transition:
        background 0.4s ease,
        border-color 0.4s ease,
        color 0.4s ease;
}


.father-lawyer-final-cta:hover {
    background: white;

    border-color: white;

    color: var(--law-dark);
}


.final-arrow {
    font-size: 1rem;

    transition:
        transform 0.4s ease;
}


.father-lawyer-final-cta:hover .final-arrow {
    transform: translate(4px, -4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .father-lawyer-main {
        grid-template-columns: 1fr;

        gap: 65px;
    }


    .father-lawyer-content {
        max-width: 850px;
    }


    .father-lawyer-secondary {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .father-lawyer-services-intro {
        max-width: 800px;
    }


    .father-lawyer-secondary .image-secondary {
        margin-top: 0;

        max-width: 800px;
        margin-left: auto;
    }


    .father-lawyer-final {
        grid-template-columns: 50px 1fr;

        gap: 25px;
    }


    .father-lawyer-final-cta {
        grid-column: 2;

        justify-self: start;

        margin-top: 15px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .father-lawyer-section {
        padding: 80px 0;
    }


    .father-lawyer-container {
        width: 90%;
    }


    .father-lawyer-intro {
        margin-bottom: 60px;
    }


    .father-lawyer-eyebrow {
        font-size: 0.62rem;

        letter-spacing: 0.14em;
    }


    .eyebrow-line {
        width: 25px;
    }


    .father-lawyer-title {
        font-size: clamp(3rem, 13vw, 5rem);

        line-height: 0.92;
    }


    .father-lawyer-lead {
        font-size: 0.95rem;

        line-height: 1.75;
    }


    /* -----------------------------------------------------
       IMAGENS MOBILE
    ----------------------------------------------------- */

    .father-lawyer-image.image-primary {
        height: 650px;
    }


    .father-lawyer-image.image-secondary {
        height: 700px;
    }


    .father-lawyer-image img {
        object-fit: contain;
    }


    .image-caption {
        left: 12px;
        right: 12px;
        bottom: 12px;

        padding: 11px 12px;

        font-size: 0.53rem;
    }


    .image-number {
        top: 12px;
        left: 12px;

        width: 34px;
        height: 34px;

        font-size: 0.58rem;
    }


    .image-floating-label {
        left: 14px;
        bottom: 14px;

        padding: 10px 13px;

        font-size: 0.75rem;
    }


    /* -----------------------------------------------------
       CONTENT
    ----------------------------------------------------- */

    .father-lawyer-content h3,
    .father-lawyer-services-intro h3 {
        font-size: clamp(2rem, 9vw, 3.3rem);

        line-height: 1.02;
    }


    .father-lawyer-content p,
    .father-lawyer-services-intro p {
        font-size: 0.92rem;

        line-height: 1.75;
    }


    /* -----------------------------------------------------
       SERVICES
    ----------------------------------------------------- */

    .services-top {
        display: block;

        margin-bottom: 35px;
    }


    .services-top p {
        margin-top: 20px;

        font-size: 0.84rem;
    }


    .father-lawyer-services-grid {
        grid-template-columns: 1fr;
    }


    .father-service-card {
        min-height: 240px;

        padding: 24px;
    }


    .service-number {
        margin-bottom: 35px;
    }


    .service-card-content h4 {
        font-size: 1.15rem;
    }


    .service-card-content p {
        font-size: 0.82rem;
    }


    /* -----------------------------------------------------
       CTA FINAL
    ----------------------------------------------------- */

    .father-lawyer-final {
        display: block;

        padding: 35px 25px;
    }


    .final-number {
        margin-bottom: 25px;
    }


    .final-content h3 {
        font-size: clamp(2rem, 9vw, 3.2rem);
    }


    .father-lawyer-final-cta {
        margin-top: 30px;

        width: 100%;

        box-sizing: border-box;

        justify-content: space-between;
    }
}


/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 480px) {

    .father-lawyer-section {
        padding: 65px 0;
    }


    .father-lawyer-container {
        width: 88%;
    }


    .father-lawyer-image.image-primary {
        height: 590px;
    }


    .father-lawyer-image.image-secondary {
        height: 640px;
    }


    .father-service-card {
        min-height: 220px;

        padding: 20px;
    }


    .father-lawyer-final {
        padding: 30px 20px;
    }
}


/* =========================================================
   REDUÇÃO DE MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .father-lawyer-image img,
    .father-service-card,
    .father-lawyer-main-cta,
    .father-lawyer-final-cta {
        transition: none;
    }


    .father-lawyer-image:hover img {
        transform: none;
    }


    .father-service-card:hover {
        transform: none;
    }
}




/* ═══════════════════════════════════
     DEPOIMENTOS MINIMALISTA
  ═══════════════════════════════════ */

.depoimentos-minimal {
    padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 7vw, 7rem);
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.depoimentos-minimal-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.depo-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
}

.header-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #1a1a1a 50%, transparent 100%);
    margin: 0 auto 2rem;
}

.depo-title {
    font-family: "Fjalla One", sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
}

.depo-title span {
    font-style: italic;
    position: relative;
}

.depo-title span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: #1a1a1a;
}

.depo-intro {
    font-size: clamp(0.95rem, 1.1vw, 1rem);
    line-height: 1.7;
    color: #5A504A;
    margin-bottom: 2rem;
}

.btn-google-minimal {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 2rem;
    background: #ffffff;
    border: 1.5px solid #e0e0e0;
    color: #1a1a1a;
    font-family: "Fjalla One", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-google-minimal:hover {
    border-color: #4285F4;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(66, 133, 244, 0.15);
}

/* Grid assimétrico */
.depo-grid-minimal {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.card-1 {
    grid-column: 1 / 5;
}

.card-2 {
    grid-column: 5 / 9;
}

.card-3 {
    grid-column: 9 / 13;
}

.card-4 {
    grid-column: 1 / 6;
}

.card-5 {
    grid-column: 6 / 10;
}

.card-6 {
    grid-column: 10 / 13;
}

.depo-card-minimal {
    position: relative;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeUp 0.9s ease both;
}

.depo-card-minimal:nth-child(1) {
    animation-delay: 0.1s;
}

.depo-card-minimal:nth-child(2) {
    animation-delay: 0.15s;
}

.depo-card-minimal:nth-child(3) {
    animation-delay: 0.2s;
}

.depo-card-minimal:nth-child(4) {
    animation-delay: 0.25s;
}

.depo-card-minimal:nth-child(5) {
    animation-delay: 0.3s;
}

.depo-card-minimal:nth-child(6) {
    animation-delay: 0.35s;
}

.card-shape {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid #afacac;
    border-radius: 50%;
    top: -10px;
    right: -10px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.depo-card-minimal:hover {
    transform: translateY(-6px);
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.depo-card-minimal:hover .card-shape {
    opacity: 1;
}

.depo-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.depo-stars i {
    font-size: 0.9rem;
    color: #f8e801;
}

.depo-text-minimal {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
}

.depo-author-minimal {
    font-size: 0.85rem;
    font-weight: 600;
    color: #5A504A;
    position: relative;
    padding-top: 0.8rem;
}

.depo-author-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: #1a1a1a;
}





/* ═══════════════════════════════════
     SALÁRIO MATERNIDADE SECTION
  ═══════════════════════════════════ */

.maternidade-section {
    position: relative;
    padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 7vw, 7rem);
    background: linear-gradient(135deg, #0a3a66 0%, #1e5a96 25%, #2d7fbd 50%, #3a9fd6 75%, #2b6fa8 100%);
    overflow: hidden;
}

/* Grid 3D animado */
.grid-3d-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.123) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.103) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg) scale(2);
    transform-origin: center center;
    opacity: 0.6;
    animation: gridScroll 20s linear infinite;
    pointer-events: none;
}

@keyframes gridScroll {
    0% {
        transform: perspective(500px) rotateX(60deg) scale(2) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) scale(2) translateY(50px);
    }
}

.maternidade-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.content-side {
    animation: fadeUp 0.9s ease both;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.tag {
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.section-title {
    font-family: "Fjalla One", sans-serif;
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.8rem;
    letter-spacing: -0.01em;
}

.highlight {
    position: relative;
    color: #ffffff;
    font-style: italic;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    z-index: -1;
}

.section-text {
    font-size: clamp(0.95rem, 1.1vw, 1rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.815);
    margin-bottom: 1.5rem;
}

.section-text strong {
    color: rgb(255, 255, 255);
    font-weight: 600;
}

.cta-wrapper {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 2.5rem;
    background: #ffffff;
    color: #1a1a1a;
    font-family: "Fjalla One", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #ffffff;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-cta:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.15);
}

.btn-cta:hover::before {
    opacity: 1;
}

.btn-cta svg {
    transition: transform 0.3s ease;
}

.btn-cta:hover svg {
    transform: translateX(4px);
}

.cta-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.877);
    font-style: italic;
}

/* Lado da imagem */
.image-side {
    position: relative;
    animation: fadeUp 0.9s 0.2s ease both;
}

.image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(10%);
}

.frame-border {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    pointer-events: none;
}

.floating-info {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: rgba(54, 52, 52, 0.555);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.808);
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    display: flex;
    gap: 1rem;
    max-width: 320px;
}

.info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.info-content {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.info-content strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.3rem;
}



/* ═══════════════════════════════════
     BENEFÍCIOS INSS SECTION
  ═══════════════════════════════════ */

.inss-section {
    position: relative;
    padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 7vw, 7rem);
    background: linear-gradient(135deg, #0c6ec9 0%, #1e5a96 25%, #2d7fbd 50%, #3a9fd6 75%, #2b6fa8 100%);
    overflow: hidden;
}

.grid-inverted {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.096) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.137) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(500px) rotateX(-60deg) scale(2);
    animation: gridScrollInverted 20s linear infinite;
}

@keyframes gridScrollInverted {
    0% {
        transform: perspective(500px) rotateX(-60deg) scale(2) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(-60deg) scale(2) translateY(-60px);
    }
}

.inss-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.image-side-left {
    position: relative;
    animation: fadeUp 0.9s ease both;
}

.image-frame-alt {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.image-frame-alt img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(10%);
}

.frame-border-alt {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    pointer-events: none;
}

.floating-stats {
    position: absolute;
    top: -20px;
    right: -30px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.stat-number {
    font-family: "Fjalla One", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    max-width: 80px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.content-side-right {
    animation: fadeUp 0.9s 0.2s ease both;
}

.keyword-tags-alt {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.section-title-alt {
    font-family: "Fjalla One", sans-serif;
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.8rem;
    letter-spacing: -0.01em;
}

.highlight-alt {
    position: relative;
    color: #ffffff;
    font-style: italic;
}

.highlight-alt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    z-index: -1;
}

.section-text-alt {
    font-size: clamp(0.95rem, 1.1vw, 1rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.808);
    margin-bottom: 1.5rem;
}

.section-text-alt strong {
    color: rgb(255, 255, 255);
    font-weight: 600;
}

.cta-wrapper-alt {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}

.btn-cta-alt {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 2.5rem;
    background: #ffffff;
    color: #0f0f0f;
    font-family: "Fjalla One", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #ffffff;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.btn-cta-alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-cta-alt:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.15);
}

.btn-cta-alt:hover::before {
    opacity: 1;
}

.btn-cta-alt svg {
    transition: transform 0.3s ease;
}

.btn-cta-alt:hover svg {
    transform: translateX(4px);
}

.cta-note-alt {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.932);
    font-style: italic;
}

/* ═══════════════════════════════════
     ANIMAÇÃO
  ═══════════════════════════════════ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════
     RESPONSIVO
  ═══════════════════════════════════ */

@media (max-width: 1024px) {

    .maternidade-inner,
    .inss-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .image-side,
    .image-side-left {
        max-width: 500px;
        margin: 0 auto;
    }

    .floating-info {
        position: static;
        margin-top: 1.5rem;
        max-width: 100%;
    }

    .floating-stats {
        position: static;
        margin-top: 1.5rem;
        justify-content: center;
    }
}

@media (max-width: 640px) {

    .keyword-tags,
    .keyword-tags-alt {
        justify-content: flex-start;
    }

    .floating-stats {
        flex-direction: column;
        align-items: stretch;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .stat-label {
        max-width: 100%;
    }
}




/* ═══════════════════════════════════
     DOR DO CLIENTE
  ═══════════════════════════════════ */

.dor-cliente-section {
    padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 7vw, 7rem);
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.dor-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
}

.dor-content {
    animation: fadeUp 0.9s ease both;
}

.keywords-dor {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
}

.keyword-tag {
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.keyword-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #ffffff;
    transform: translateX(4px);
}

.dor-title {
    font-family: "Fjalla One", sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 300;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 2rem;
}

.emphasize {
    font-style: italic;
    position: relative;
    display: inline-block;
}

.emphasize::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
}

.dor-text-block {
    margin-bottom: 2.5rem;
}

.dor-text {
    font-size: clamp(0.95rem, 1.1vw, 1rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

.dor-text strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.highlight-pain {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    padding: 0.2rem 0.5rem;
    border-left: 2px solid rgba(255, 255, 255, 0.5);
}

.pain-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 255, 255, 0.15);
}

.pain-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.pain-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
}

.cta-dor {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
}

.btn-dor {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 2.5rem;
    background: #ffffff;
    color: #1a1a1a;
    font-family: "Fjalla One", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-dor:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2);
}

.btn-dor svg {
    transition: transform 0.3s ease;
}

.btn-dor:hover svg {
    transform: translateX(4px);
}

.cta-subtext {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Visual lado direito */
.dor-visual {
    position: relative;
    animation: fadeUp 0.9s 0.2s ease both;
}

.visual-lines {
    position: relative;
    height: 400px;
}

.line {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
}

.line-1 {
    width: 2px;
    height: 100%;
    left: 20%;
    top: 0;
    animation: lineGrow1 2s ease-in-out infinite alternate;
}

.line-2 {
    width: 2px;
    height: 80%;
    left: 50%;
    top: 10%;
    animation: lineGrow2 2.5s ease-in-out infinite alternate;
}

.line-3 {
    width: 2px;
    height: 90%;
    right: 20%;
    top: 5%;
    animation: lineGrow3 3s ease-in-out infinite alternate;
}

@keyframes lineGrow1 {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.1;
    }

    50% {
        transform: scaleY(1.1);
        opacity: 0.3;
    }
}

@keyframes lineGrow2 {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.15;
    }

    50% {
        transform: scaleY(1.15);
        opacity: 0.35;
    }
}

@keyframes lineGrow3 {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.1;
    }

    50% {
        transform: scaleY(1.08);
        opacity: 0.25;
    }
}

.stat-highlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.stat-big {
    font-family: "Fjalla One", sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
}

.stat-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 200px;
    line-height: 1.4;
}

/* ═══════════════════════════════════
     ANIMAÇÕES
  ═══════════════════════════════════ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════
     RESPONSIVO
  ═══════════════════════════════════ */

@media (max-width: 1024px) {
    .depo-grid-minimal {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-1,
    .card-2,
    .card-3,
    .card-4,
    .card-5,
    .card-6 {
        grid-column: auto;
    }

    .dor-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .visual-lines {
        height: 300px;
    }
}

@media (max-width: 640px) {
    .depo-grid-minimal {
        grid-template-columns: 1fr;
    }

    .pain-points {
        padding-left: 0;
        border-left: none;
    }

    .cta-dor {
        align-items: stretch;
    }

    .btn-dor {
        justify-content: center;
    }
}




/* ═══════════════════════════════════
     BLOG SECTION
  ═══════════════════════════════════ */

.blog-section {
    padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 7vw, 7rem);
    background: #ffffff;
    border-bottom: 1px solid #000000cc;
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(20, 18, 16, 0.04) 0%, transparent 70%);
    filter: blur(50px);
    top: -100px;
    right: -80px;
    pointer-events: none;
}

.blog-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
    position: relative;
    z-index: 1;
}

.blog-title {
    font-family: "Fjalla One", sans-serif;
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    font-weight: 300;
    line-height: 1.2;
    color: #1A1614;
    margin-bottom: 1rem;
}

.blog-title em {
    font-style: italic;
    position: relative;
    display: inline-block;
}

.blog-title em::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: #1a1a1a;
}

.blog-desc {
    font-size: clamp(0.95rem, 1.1vw, 1rem);
    line-height: 1.7;
    color: #5A504A;
}

/* Grid desalinhado */
.blog-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

/* Espaçadores vazios para desalinhar */
.blog-spacer-1 {
    grid-column: 1 / 2;
    height: 0;
}

.blog-spacer-2 {
    grid-column: 12 / 13;
    height: 0;
}

.blog-spacer-3 {
    grid-column: 1 / 2;
    height: 0;
}

.blog-spacer-4 {
    grid-column: 12 / 13;
    height: 0;
}

.blog-spacer-5 {
    grid-column: 1 / 2;
    height: 0;
}

.blog-spacer-6 {
    grid-column: 12 / 13;
    height: 0;
}

/* Cards com diferentes larguras */
.blog-card {
    background: #ffffff;
    border-radius: 8px;
    padding: clamp(1.8rem, 2.5vw, 2.2rem);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    animation: fadeUp 0.9s ease both;
    position: relative;
    overflow: hidden;
}

.card-main {
    grid-column: 2 / 8;
}

.blog-card:nth-child(2) {
    grid-column: 1 / 6;
    animation-delay: 0.1s;
}

.blog-card:nth-child(4) {
    grid-column: 7 / 12;
    animation-delay: 0.15s;
}

.blog-card:nth-child(6) {
    grid-column: 2 / 8;
    animation-delay: 0.2s;
}

.blog-card:nth-child(8) {
    grid-column: 8 / 13;
    animation-delay: 0.25s;
}

.blog-card:nth-child(10) {
    grid-column: 1 / 6;
    animation-delay: 0.3s;
}

.blog-card:nth-child(12) {
    grid-column: 6 / 12;
    animation-delay: 0.35s;
}

.card-marker {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #1a1a1a 0%, transparent 100%);
    transition: height 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.blog-card:hover .card-marker {
    height: 100%;
}

.card-content {
    position: relative;
}

.card-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    background: rgba(20, 18, 16, 0.06);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

.card-title {
    font-family: "Fjalla One", sans-serif;
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    font-weight: 400;
    line-height: 1.3;
    color: #1A1614;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.blog-card:hover .card-title {
    color: #1a1a1a;
}

.card-excerpt {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #5A504A;
    margin-bottom: 1.2rem;
}

.card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #9A8F87;
    margin-bottom: 1.2rem;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.card-meta i {
    font-size: 0.9rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.card-link:hover {
    gap: 0.8rem;
    color: #5A504A;
}

.card-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.blog-card:hover .card-link i {
    transform: translateX(2px);
}

.blog-footer {
    text-align: center;
    margin-top: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 1;
}

.blog-footer p {
    font-size: 0.9rem;
    color: #5A504A;
    margin-bottom: 1.5rem;
}

.btn-all-articles {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.2rem;
    background: #1a1a1a;
    color: #ffffff;
    font-family: "Fjalla One", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-all-articles:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}



/* ═══════════════════════════════════
     FOOTER
  ═══════════════════════════════════ */

.footer-main {
    position: relative;
    padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 7vw, 7rem) clamp(2rem, 4vw, 3rem);
    background: #ffffff;
    color: #1A1614;
    overflow: hidden;
}

/* Padrão de linhas de fundo */
.footer-lines-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, #e8e4df 1px, transparent 1px),
        linear-gradient(#e8e4df 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
    animation: linesMove 8s linear infinite;
    pointer-events: none;
}

@keyframes linesMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(40px, 40px);
    }
}

.footer-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(3rem, 5vw, 4rem);
    position: relative;
    z-index: 1;
}

/* Coluna 1: Brand (desalinhado para cima) */
.footer-col-1 {
    grid-column: 1 / 4;
    margin-top: -1.5rem;
}

.footer-brand {
    font-family: "Fjalla One", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #1A1614;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.footer-brand-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5A504A;
    margin-bottom: 0.5rem;
}

.footer-brand-desc.small {
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.8;
}

/* Coluna 2: Links (centro) */
.footer-col-2 {
    grid-column: 5 / 7;
}

/* Coluna 3: Serviços (desalinhado para baixo) */
.footer-col-3 {
    grid-column: 7 / 9;
    margin-top: 1.5rem;
}

/* Coluna 4: Contato (desalinhado para cima) */
.footer-col-4 {
    grid-column: 9 / 13;
    margin-top: -1rem;
}

.footer-col-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1A1614;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: #1a1a1a;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: #5A504A;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #3574fa;
    transform: translateX(4px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #5A504A;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-item:hover {
    color: #3574fa;
    transform: translateX(4px);
}

.contact-item:hover i {
    color: #3574fa;
}

.contact-item i {
    font-size: 1.1rem;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

/* Sociais desalinhadas */
.footer-social-section {
    max-width: 1400px;
    margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
    position: relative;
    z-index: 1;
    padding-left: 8%;
}

.social-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #5A504A;
    margin-bottom: 1rem;
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 18, 16, 0.06);
    color: #1a1a1a;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-whatsapp::before {
    background: #25D366;
}

.social-instagram::before {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-facebook::before {
    background: #1877F2;
}

.social-btn:hover {
    transform: translateY(-6px) scale(1.12);
    background: transparent;
    color: #ffffff;
}

.social-btn:hover::before {
    opacity: 1;
}

.social-btn i {
    position: relative;
    z-index: 1;
}

/* Divisor criativo */
.footer-divider {
    max-width: 1400px;
    margin: 0 auto clamp(2rem, 4vw, 2.5rem);
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #1a1a1a 25%, #1a1a1a 75%, transparent 100%);
    position: relative;
    z-index: 1;
}

/* Bottom */
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom-left {
    flex: 1;
    min-width: 250px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #5A504A;
    margin-bottom: 0.3rem;
}

.footer-oab {
    font-size: 0.75rem;
    color: #9A8F87;
    font-weight: 500;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-link-policy {
    font-size: 0.8rem;
    color: #5A504A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-policy:hover {
    color: #000000;
}

.footer-separator {
    color: #9A8F87;
}

/* ═══════════════════════════════════
     ANIMAÇÕES
  ═══════════════════════════════════ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════
     RESPONSIVO
  ═══════════════════════════════════ */

@media (max-width: 1024px) {
    .footer-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col-1,
    .footer-col-2,
    .footer-col-3,
    .footer-col-4 {
        grid-column: auto;
        margin-top: 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }


}

@media (max-width: 768px) {

    .blog-section {
        padding: 4rem 1rem;
    }

    .blog-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .blog-spacer-1,
    .blog-spacer-2,
    .blog-spacer-3,
    .blog-spacer-4,
    .blog-spacer-5,
    .blog-spacer-6 {
        display: none;
    }

    .blog-card,
    .card-main,
    .blog-card:nth-child(2),
    .blog-card:nth-child(4),
    .blog-card:nth-child(6),
    .blog-card:nth-child(8),
    .blog-card:nth-child(10),
    .blog-card:nth-child(12) {
        width: 100%;
        max-width: 85%;
        grid-column: unset;
    }

    .blog-card {
        padding: 1.6rem;
    }

    .card-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .card-excerpt {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .card-meta {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .card-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .footer-social-section {
        padding-left: 0;
    }

    .footer-socials {
        gap: 1rem;
    }

    .social-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}