@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --burgundy: #4a1628;
    --burgundy-dark: #35101d;
    --burgundy-light: #6e2a42;
    --beige: rgb(251, 248, 246);
    --beige-dark: rgb(242, 235, 231);
    --dark: #1e1a18;
    --muted: #7a6a66;
    --line: #ece3df;
    --line-strong: #dfd2cc;
    --white: #ffffff;
    
    /* Mapeamento para retrocompatibilidade */
    --cor-vinho: #4a1628;
    --vinho-escuro: #35101d;
    --vinho-branco: #fbf8f6;
}

*, *::before, *::after {
    border: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    background-color: var(--beige);
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--dark);
    background-color: var(--beige);
    line-height: 1.6;
    overflow-x: hidden;
}

/* BOTÕES DE MENU HAMBÚRGUER / FECHAR (CORRIGIDOS) */
#menuHamburger, 
#menuFechar {
    position: fixed;
    top: 1rem;
    right: 1rem;
    left: auto;
    width: 44px;
    height: 44px;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1001;
    transition: all 0.2s ease;
}

#menuHamburger {
    display: none;
    border: 1px solid var(--line-strong);
    background-color: var(--white);
    color: var(--burgundy);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#menuFechar {
    display: none;
    border: none;
    background-color: transparent;
    color: var(--burgundy);
}

#menuHamburger a, 
#menuFechar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

nav {
    display: flex;    
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 0.5rem;
    flex-flow: column nowrap;
    text-align: center;
    align-items: center;
    gap: 2rem;
}

nav ul {
    list-style-type: none;    
}

nav ul li { 
    float: left;
    margin: 0 1.5rem;
}

nav ul li a {
    display: block;    
    color: var(--dark);
    text-align: center;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 999px;
    transition: all 0.2s ease;
}

nav ul li a:hover {
    color: var(--burgundy);
    background: rgba(74, 22, 40, 0.05);
}

#navMenuSmLogo {
    display: none;
    height: fit-content;   
    width: fit-content; 
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: var(--dark);
}

.hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--burgundy);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

div .arrowDown {
    left: 50%;
    transform: translateX(-50%) rotate(45deg);   
    opacity: 0;
}

html:not([data-scroll='0']) #arrowSection {
    display: none;
}
.imgEntrada {
    max-height: 20rem;
    max-width: 90%;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.l1280px {    
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.bkgTxt {
    background-clip: content-box;
    background-attachment: fixed;
}

section {    
    width: 100%;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 1000;
    cursor: pointer;
    overflow: visible;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

.whatsapp-float::before,
.whatsapp-float::after {
    content: "";
    position: absolute;
    width: 56px;
    height: 56px;
    border: 2px solid #25d366;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.whatsapp-float::after {
    animation-delay: 1s;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

 .planoInicial {
  background: 
    linear-gradient(rgba(251, 248, 246, 0.1), rgba(251, 248, 246, 1)),
    url('/media/texture_marble1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.barra {
    margin: 3rem auto;
    width: 100%;
}

.fundo-branco {
    background-color: var(--white);
}

.titulo {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 400;
    color: var(--burgundy);    
    word-wrap: normal;
}

.imgMedia {
    height: 25rem;
    max-width: 100%;
    border-radius: 22px;
    object-fit: cover;
}

.imgMaior {
    height: 35rem;
    max-width: 100%;
}

.imgPequena {
    height: 10rem;
    max-width: 100%;
}

.flexColumn {
    display: flex;
    flex-direction: column;
    gap: 2rem;    
    width: 100%;
}

.padding-maior {
    padding: 3rem 1.5rem;
}

.flexRow {
    display: flex;
    flex-flow: row;
    gap: 1.5rem;
    width: 100%;
}

.flex-grow0 {
    flex-grow: 0;
}

.strecht {
    align-self: stretch;
}

.cor-branca {
    color: var(--dark);
}

.cor-vinho {
    color: var(--burgundy);
}

.capitalize {
    text-transform: capitalize;
}

.fonte-padrao {
    font-family: 'Instrument Serif', Georgia, serif;
    font-weight: 400;
}

.texto-gancho {
    font-size: clamp(28px, 5vw, 56px);
    color: var(--dark);
    letter-spacing: -0.02em;
    word-break: break-word;
}

.texto-gancho-md {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    color: var(--burgundy);
}

.texto-medio {
    font-size: 2.5rem;
}

.text-align-center {
    text-align: center;
}

.padding-medio {
    padding: 1.5rem;
}

.placa {
    max-width: 35rem;
    width: 100%;
    height: auto;
}

.link-normal {
    text-decoration: none;
}

.texto-padrao {
    font-size: 1.15rem;
    color: var(--muted);
    line-height: 1.7;
    word-wrap: break-word;
}

.estreito {
    max-width: 890px;
    margin: 0 auto;
}

.margem-media {
    margin: 1rem auto;
}

.margin-top-maior {
    margin-top: 2rem;
}

.fundo-fosco {
    background-color: var(--beige-dark);
}

.margin-bottom-maior {
    margin-bottom: 4rem;
}

.text-align-left {
    text-align: left;
}

.sombra {
    box-shadow: var(--shadow-card, 0 16px 40px rgba(30,26,24,0.08));
}

.radio {
    border-radius: 22px;
}

.rounded {
    border-radius: 50%;
}

.margin-zero {
    margin: 0;
}

.padding-zero {
    padding: 0;
}

.risco {
    display: block;
    height: 1px;
    width: 100%;
    max-width: 350px;
    background-color: var(--line-strong);   
    margin: 0 auto; 
}

.margin-zero-auto {
    margin: 0 auto;
}

.recuo {
    margin-left: 20px;
}

.block {
    display: block;
}

.justificado {
    text-align: justify;
}

.bold {
    font-weight: 600;
}

.imgIcone {
    height: 28px;
    width: auto;
}

.imgIconeMedio {
    height: 80px;
}

.align-items-center {
    align-items: center;
}

.justify-space-around {
    justify-content: space-around;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-center {
    justify-content: center;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.width-fit {
    max-width: 450px; 
    width: 100%;
}

.background-img {
    background-color: var(--beige);
}

.align-items-end {
    align-items: flex-end;
}

footer {
    width: 100%;
    height: auto;    
    background-color: #1a1214;
    padding: 2rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

footer div {
    color: #b89aa3;
    font-size: 0.9rem;
    text-align: center;
}

.centralizaVertical {
    position: relative;
    top: 100px;
    width: 100%;
}
.minHeight { min-height: 820px;}

/* CARDS DAS ÁREAS DE ATUAÇÃO E FILOSOFIA */
#areaAtuacao .flexRow.flex-nowrap,
#filosofia p.texto-padrao {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

/* PLANOS JURÍDICOS */
.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin-top: 1.5rem;
}

.plano-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.plano-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(74, 22, 40, 0.08);
    border-color: var(--line-strong);
}

.plano-card.destaque {
    border: 2px solid var(--burgundy);
    background: linear-gradient(180deg, #ffffff 0%, #fbf8f6 100%);
    position: relative;
}

.plano-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--burgundy);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 999px;
    text-transform: uppercase;
}

.plano-card h3 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2rem;
    color: var(--burgundy);
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.plano-card p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6;
}

.btn-planos-main {
    display: inline-block;
    background: var(--burgundy);
    color: var(--white) !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(74, 22, 40, 0.2);
    transition: all 0.3s ease;
    max-width: 100%;
}

.btn-planos-main:hover {
    background: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(74, 22, 40, 0.3);
}

/* OCULTAR SETA NO SCROLL */
#arrowSection {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#arrowSection.esconder-seta {
    display: none !important;
    opacity: 0;
    pointer-events: none;
}

@keyframes scrolldown {
    0% { transform: translateY(20%) rotate(45deg); opacity: 0.7; }
    50% { transform: translateY(0%) rotate(45deg); opacity: 0.2; }
    100% { transform: translateY(20%) rotate(45deg); opacity: 0.7; }
}

@keyframes slidein {
    from { transform: translate(0px, -6px); }  
    to { transform: translate(0px, 6px); }
}

/* MEDIA QUERIES */
@media (max-width: 1130px) {
    #sectionNavMenu { display: none; margin-top: 0; }    
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 1000;
        background-color: var(--beige);
        opacity: 1;
        overflow-y: auto;
        justify-content: center;
    }
    nav ul { list-style-type: none; padding-left: 0; max-width: 30rem; width: 100%; }       
    #listaMenu { display: flex; flex-direction: column; gap: 1rem; }
    #listaMenu li { float: none; margin: 0; }
    #listaMenu li a { color: var(--dark); font-size: 1.5rem; }
    #menuHamburger { display: flex; z-index: 1001; }    
    #navMenuSmLogo { display: block; }
    .margin-top-maior { margin-top: 2rem; }
}

@media (max-width: 1080px) {
    .minHeight { min-height: auto; height: auto; }
    .bkgTxt { height: auto; }
    .risco { width: 200px; }
    .planos-grid { grid-template-columns: 1fr; }
    .flexRow { flex-wrap: wrap; }
}

@media (max-width: 680px) {
    section { padding: 2rem 1rem; }
    .padding-maior { padding: 1.5rem 0.5rem; }
    .imgEntrada { max-height: 14rem; }
    .imgMedia { height: auto; max-height: 20rem; width: 100%; object-fit: cover; }
    .clienteImg { height: auto; }
    .rowToColumn { flex-direction: column; }
    
    #contato .flexColumn {
        padding: 1.5rem 1rem !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    #contato a.sombra {
        font-size: 0.95rem;
        padding: 10px 14px !important;
        word-break: break-word;
    }
}

/* ENGLISH LANDING PAGE */
.english-page { background: var(--beige); }
.en-hero { min-height: 760px; background: linear-gradient(105deg, rgba(251,248,246,.98) 0%, rgba(251,248,246,.92) 52%, rgba(74,22,40,.08) 100%), url('/media/texture_marble1.jpg') center/cover; }
.en-navigation { position: relative; z-index: 5; }
.en-navigation nav { flex-direction: row; justify-content: space-between; max-width: 1240px; padding: 1rem 1.5rem; gap: 1rem; }
.en-nav-logo { display: inline-flex; align-items: center; gap: .65rem; flex-shrink: 0; color: var(--dark); text-decoration: none; }
.en-nav-logo img { height: 4.5rem; width: auto; display: block; }
.en-nav-brand-text { display: flex; flex-direction: column; justify-content: center; gap: .12rem; text-align: left; white-space: nowrap; }
.en-nav-brand-text strong { color: var(--dark); font-family: 'Instrument Serif', Georgia, serif; font-size: 1.25rem; font-weight: 400; line-height: 1.05; }
.en-nav-brand-text small { color: #8c6e75; font-size: .48rem; font-weight: 700; letter-spacing: .11em; line-height: 1.2; }
.en-mobile-menu-head { display: contents; }
.en-navigation nav ul { display: flex; align-items: center; gap: .25rem; }
.en-navigation nav ul li { margin: 0; }
.en-navigation nav ul li a { font-size: .78rem; letter-spacing: .08em; padding: 8px 12px; }
.en-navigation .language-switcher { display: flex; align-items: center; gap: .45rem; margin-left: .75rem; color: var(--muted); font-size: .78rem; }
.en-navigation .language-switcher a { padding: 4px; }
.en-navigation .language-switcher .active { color: var(--burgundy); font-weight: 700; }
.en-hero-inner { max-width: 1140px; min-height: 650px; margin: 0 auto; padding: 4.5rem 1.5rem 5rem; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr); align-items: center; gap: 5rem; }
.en-eyebrow, .en-kicker { color: var(--burgundy); text-transform: uppercase; font-size: .75rem; font-weight: 700; letter-spacing: .14em; margin-bottom: 1rem; }
.en-hero h1 { max-width: 700px; font-family: 'Instrument Serif', Georgia, serif; color: var(--burgundy); font-size: clamp(3.1rem, 5.6vw, 5.4rem); line-height: .98; font-weight: 400; letter-spacing: 0; }
.en-lead { max-width: 650px; margin-top: 1.6rem; color: var(--muted); font-size: 1.12rem; line-height: 1.75; }
.en-hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.en-button { display: inline-flex; align-items: center; justify-content: center; gap: .7rem; min-height: 48px; padding: .85rem 1.35rem; border-radius: 999px; font-size: .9rem; font-weight: 600; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.en-button:hover { transform: translateY(-3px); }
.en-button-primary { color: var(--white) !important; background: var(--burgundy); box-shadow: 0 10px 24px rgba(74,22,40,.2); }
.en-button-primary:hover { background: var(--burgundy-dark); }
.en-button-secondary { color: var(--burgundy); border: 1px solid var(--line-strong); background: rgba(255,255,255,.62); }
.en-button-secondary:hover { background: var(--white); }
.en-trust-row { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 2.25rem; color: var(--muted); font-size: .78rem; }
.en-trust-row i { color: var(--burgundy); margin-right: .35rem; }
.en-hero-image { position: relative; max-width: 390px; justify-self: end; }
.en-image-frame { padding: .75rem; background: var(--white); box-shadow: 0 24px 60px rgba(74,22,40,.15); transform: rotate(2deg); }
.en-image-frame img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
.en-image-caption { position: absolute; left: -2rem; bottom: 1.5rem; display: flex; flex-direction: column; padding: 1rem 1.2rem; background: var(--burgundy); color: var(--white); box-shadow: 0 10px 30px rgba(74,22,40,.2); }
.en-image-caption strong { font-family: 'Instrument Serif', Georgia, serif; font-size: 1.4rem; font-weight: 400; }
.en-image-caption span { color: #ead9de; font-size: .7rem; }
.en-section { max-width: 1140px; margin: 0 auto; padding: 7rem 1.5rem; }
.en-section-heading { max-width: 700px; margin-bottom: 3rem; }
.en-section-heading h2, .en-cta h2 { font-family: 'Instrument Serif', Georgia, serif; color: var(--burgundy); font-size: clamp(2.5rem, 4vw, 4rem); line-height: 1.05; font-weight: 400; }
.en-section-heading > p:last-child { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; }
.en-about { border-top: 1px solid var(--line); }
.en-about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 5rem; align-items: start; }
.en-intro { color: var(--muted); font-size: 1.15rem; line-height: 1.8; }
.en-text-link { display: inline-flex; gap: .7rem; align-items: center; margin-top: 2rem; color: var(--burgundy); font-weight: 700; }
.en-benefits { display: grid; gap: 1rem; }
.en-benefits article { display: flex; gap: 1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.en-benefits i, .en-service-card > i { color: var(--burgundy); font-size: 1.4rem; padding-top: .2rem; }
.en-benefits h3, .en-service-card h3 { color: var(--dark); font-size: 1.05rem; margin-bottom: .3rem; }
.en-benefits p, .en-service-card p { color: var(--muted); font-size: .95rem; line-height: 1.65; }
.en-services { max-width: none; background: var(--beige-dark); padding-left: max(1.5rem, calc((100% - 1140px) / 2 + 1.5rem)); padding-right: max(1.5rem, calc((100% - 1140px) / 2 + 1.5rem)); }
.en-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.en-service-card { min-height: 285px; padding: 1.8rem 1.4rem; background: var(--white); border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.en-service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 35px rgba(74,22,40,.1); }
.en-service-card h3 { margin: 1.5rem 0 .7rem; font-family: 'Instrument Serif', Georgia, serif; font-size: 1.55rem; font-weight: 400; color: var(--burgundy); line-height: 1.1; }
.en-proof { display: flex; align-items: center; gap: 2rem; max-width: 900px; padding-top: 5rem; padding-bottom: 5rem; }
.en-proof-mark { flex: 0 0 60px; height: 60px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--burgundy); font-size: 1.3rem; }
.en-proof p { min-width: 0; color: var(--burgundy); font-family: 'Instrument Serif', Georgia, serif; font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.15; overflow-wrap: anywhere; }
.en-cta { max-width: 1140px; margin: 0 auto 7rem; padding: 4rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; background: var(--burgundy); color: var(--white); }
.en-cta .en-kicker { color: #d8b7c1; }
.en-cta h2 { color: var(--white); max-width: 600px; }
.en-cta > div > p:last-child { margin-top: 1rem; color: #ead9de; }
.en-cta .en-button-primary { background: var(--white); color: var(--burgundy) !important; white-space: nowrap; }
.en-footer { padding: 2.5rem 1rem; text-align: center; background: #1a1214; color: #b89aa3; }
.en-footer img { width: auto; height: 6rem; margin-bottom: .75rem; }
.en-footer-email { display: block; width: fit-content; max-width: 100%; margin: 0 auto .75rem; color: #ead9de; font-size: .85rem; overflow-wrap: anywhere; text-decoration: underline; text-underline-offset: 3px; }
.en-footer p { font-size: .8rem; }
.en-whatsapp { color: var(--white); font-size: 1.7rem; text-decoration: none; }

@media (max-width: 900px) {
    .en-hero-inner { grid-template-columns: 1fr; gap: 3rem; padding-top: 3rem; }
    .en-hero-image { justify-self: start; width: min(100%, 330px); }
    .en-service-grid { grid-template-columns: repeat(2, 1fr); }
    .en-about-grid { gap: 2.5rem; }
    .en-cta { margin-left: 1rem; margin-right: 1rem; padding: 3rem 2rem; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 680px) {
    .en-hero { min-height: auto; }
    .en-navigation nav { padding: .8rem 1rem; }
    .en-navigation nav ul { gap: 1rem; }
    .en-navigation nav ul li a { font-size: 1.35rem; letter-spacing: 0; }
    .en-navigation .language-switcher { margin: 1rem 0 0; }
    .en-nav-logo img { height: 4rem; }
    .en-hero-inner { padding: 3rem 1rem 4rem; }
    .en-hero h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
    .en-lead { font-size: 1rem; }
    .en-hero-actions, .en-button { width: 100%; }
    .en-trust-row { display: grid; gap: .65rem; }
    .en-section { padding: 5rem 1rem; }
    .en-about-grid { grid-template-columns: 1fr; }
    .en-service-grid { grid-template-columns: 1fr; }
    .en-service-card { min-height: 0; }
    .en-proof { width: calc(100% - 2rem); align-items: flex-start; gap: 1rem; }
    .en-proof-mark { flex-basis: 46px; height: 46px; font-size: 1rem; }
    .en-cta { width: calc(100% - 2rem); margin-bottom: 4rem; padding: 2.5rem 1.25rem; overflow-wrap: anywhere; }
    .en-cta h2 { font-size: 2.7rem; }
    .en-cta > div { min-width: 0; width: 100%; }
    .en-cta .en-button { max-width: 100%; white-space: normal; text-align: center; overflow-wrap: anywhere; }
    .en-image-caption { left: -.5rem; }
}

@media (max-width: 1130px) {
    .english-page #sectionNavMenu { display: block; position: fixed; inset: 0; z-index: 1000; margin: 0; background: rgba(30, 26, 24, .32); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s ease, visibility .25s ease; }
    .english-page #sectionNavMenu.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
    .english-page #sectionNavMenu nav { position: absolute; top: 0; right: 0; bottom: 0; width: min(100%, 420px); max-width: none; height: 100%; margin: 0 0 0 auto; padding: 1.25rem 1.5rem 2rem; display: flex; flex-flow: column nowrap; justify-content: flex-start; align-items: stretch; gap: 2.5rem; overflow-y: auto; background: var(--beige); box-shadow: -18px 0 45px rgba(53, 16, 29, .14); transform: translateX(100%); transition: transform .3s ease; }
    .english-page #sectionNavMenu.is-open nav { transform: translateX(0); }
    .english-page .en-mobile-menu-head { display: flex; }
    .en-mobile-menu-head { align-items: center; justify-content: space-between; min-height: 72px; }
    .en-mobile-menu-head .en-nav-logo img { height: 4rem; }
    .en-mobile-menu-head .en-nav-brand-text strong { font-size: 1.15rem; }
    .en-mobile-menu-head .en-nav-brand-text small { font-size: .44rem; }
    .en-desktop-logo { display: none; }
    .english-page #sectionNavMenu nav ul { display: flex; flex-direction: column; align-items: stretch; gap: .35rem; width: 100%; padding: 0; }
    .english-page #sectionNavMenu nav ul li { float: none; margin: 0; }
    .english-page #sectionNavMenu nav ul li a { display: block; padding: 1rem .25rem; color: var(--dark); font-size: 1.2rem; letter-spacing: .06em; text-align: left; border-bottom: 1px solid var(--line); }
    .english-page #sectionNavMenu .language-switcher { justify-content: flex-start; gap: .75rem; margin: 1rem 0 0; border-bottom: 0; }
    .english-page #sectionNavMenu .language-switcher a { display: inline-block; padding: .5rem 0; border-bottom: 0;}
    .english-page #menuFechar { position: static; display: flex; width: 44px; height: 44px; flex: 0 0 44px; }
    .english-page #menuHamburger { display: flex; z-index: 1001; }
    .english-page.menu-is-open #menuHamburger { opacity: 0; pointer-events: none; }
    .english-page.menu-is-open { overflow: hidden; }
    .english-page #sectionNavMenu.is-open #menuFechar { display: flex; visibility: visible; opacity: 1; }
}

/* ADICIONADO CONTEÚDO GERADO POR IA */

/* ==========================================================================
   LANDING PAGE - AÇÃO RENOVATÓRIA
   ========================================================================== */

/* RESET E PALETA DE CORES */
*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

html { 
    scroll-behavior: smooth; 
    -webkit-font-smoothing: antialiased; 
}

:root {
    --burgundy: #4a1628;
    --burgundy-dark: #35101d;
    --burgundy-light: #6e2a42;
    --beige: #fbf8f6;
    --beige-dark: #f2ebe7;
    --dark: #1e1a18;
    --muted: #7a6a66;
    --line: #ece3df;
    --white: #ffffff;
    --radius-pill: 999px;
    --radius-card: 22px;
    --shadow-soft: 0 12px 32px rgba(74,22,40,0.06);
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--beige);
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    /* background: rgba(251,248,246,0.95); */
    /* -webkit-backdrop-filter: blur(14px); */
    /* backdrop-filter: blur(14px); */
    /* border-bottom: 1px solid var(--line); */
    margin: 0;
    width: 100%;
    overflow: visible;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 12px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Instrument Serif', serif;
    font-size: 20px;
    letter-spacing: -0.01em;
    min-width: 0;
  }
.logo-mark {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background-image: url("../../media/LOGO_SMALL_CLIENTE.png");
    background-size: contain; 
    background-position: center;
    background-repeat: no-repeat;
}
.btn-header {
    background: var(--burgundy);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}
.btn-header:hover { background: var(--burgundy-dark); }

/* HERO SECTION */
.hero {
    padding: 64px 0;
    text-align: center;
    /* border-bottom: 1px solid var(--line); */
    /* background: linear-gradient(180deg, var(--beige) 0%, var(--beige-dark) 100%); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: var(--burgundy);
    background: rgba(74,22,40,0.07);
    border: 1px solid rgba(74,22,40,0.12);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero h1 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--dark);
}
.hero p.subtitle {
    font-size: 18px;
    color: var(--muted);
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    max-width: 780px;
    margin: 0 auto;
}

/* ARTIGO & CONTEÚDO */
.section { padding: 64px 0; }
.grid-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.card-content {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 36px;
    box-shadow: var(--shadow-soft);
}
.card-content h2, .card-content h3 {
    font-family: 'Instrument Serif', serif;
    color: var(--burgundy);
    font-size: 26px;
    margin-bottom: 16px;
}
.card-content p {
    font-size: 15px;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}
.card-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}
.card-content li {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--dark);
}
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 76px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
}
.checklist-item .icon {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    background: rgba(74,22,40,0.08);
    color: var(--burgundy);
    font-weight: 700;
}
.checklist-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: var(--dark);
}
.alert-box {
    background: rgba(74,22,40,0.04);
    border-left: 4px solid var(--burgundy);
    padding: 16px 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 14px;
    color: var(--dark);
}

/* PERFIL DA ADVOGADA */
.profile-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 36px;
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
    box-shadow: var(--shadow-soft);
}
.profile-card img {
    width: 300px;
    height: 300px;
    border-radius: 10%;
    object-fit: cover;
    border: 2px solid var(--line);
    flex-shrink: 0;
}
.profile-text p {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.7;
}

/* BOTÕES / CTAS */
.cta-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 48px 0;
    flex-wrap: wrap;
}
.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
    box-shadow: var(--shadow-soft);
}
.btn-action:hover { transform: translateY(-2px); }
.btn-whatsapp { background: var(--burgundy); color: var(--white); }
.btn-whatsapp:hover { background: var(--burgundy-dark); }
.btn-whatsapp-gold { background: #d4a373; color: var(--dark); font-weight: 700; }
.btn-whatsapp-gold:hover { background: #c29263; }
.guide-box {
    margin-top: 48px;
    padding: 32px;
    text-align: center;
    background: var(--beige-dark);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
}
.guide-box h2 {
    margin-bottom: 12px;
    font-family: 'Instrument Serif', serif;
    color: var(--burgundy);
    font-size: 30px;
}
.guide-box p {
    max-width: 720px;
    margin: 0 auto 24px;
    color: var(--muted);
}
.btn-instagram { background: var(--white); color: var(--dark); border: 1px solid var(--line); }
.btn-instagram:hover { border-color: var(--dark); }
.btn-action img { width: 20px; height: 20px; }
/* TABELA DE REQUISITOS */
.table-container {
    overflow-x: auto;
    margin: 32px 0;
}
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
}
th, td {
    padding: 16px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
}
th {
    background: var(--burgundy);
    color: var(--white);
    font-weight: 600;
}
/* ÁREAS DE ATUAÇÃO */
.areas-section {
    background: var(--beige-dark);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 64px 0;
}
.section-title {
    font-family: 'Instrument Serif', serif;
    font-size: 38px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.area-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}
.area-item img { width: 18px; height: 18px; opacity: 0.8; }

/* LOGO & FOOTER */
.logo-footer { text-align: center; padding: 48px 0; }
.logo-footer img { max-width: 180px; margin: 0 auto; }

footer {
    background: var(--dark);
    color: var(--muted);
    text-align: center;
    padding: 24px;
    font-size: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 99;
    transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float img { width: 28px; height: 28px; }

/* RESPONSIVIDADE */
@media (max-width: 1370px) {
    .barra {
        margin: 0 auto;
        width: 100%;
    }
    section {
        padding: 0.8rem 1.5rem;
    }
}
@media (max-width: 1190px) {
    .centralizaVertical {
        top: 50px;
    }
}
@media (max-width: 868px) {
    .grid-two-col { grid-template-columns: 1fr; }
    .english-page #sectionNavMenu nav { padding: .8rem 1rem 1.5rem; }
    .english-page #sectionNavMenu nav ul li a { font-size: 1.08rem; letter-spacing: .04em; }
    .en-mobile-menu-head .en-nav-logo img { height: 3.7rem; }
    .en-mobile-menu-head .en-nav-brand-text strong { font-size: 1.05rem; }
    .en-mobile-menu-head .en-nav-brand-text small { font-size: .4rem; letter-spacing: .08em; }
}
@media (max-width: 520px) {
    .checklist-grid { grid-template-columns: 1fr; }
    .card-content { padding: 24px; }
    .guide-box { padding: 24px; }
    .padding-maior { padding: 1.5rem 0.5rem; }
    .centralizaVertical {
        top: 30px;
    }
    .barra {
        margin: 0 auto;
        width: 100%;
    }

}

/* HEADER & LOGO UNIFICADA */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark);
}


.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 22px;
    line-height: 1.1;
    color: var(--dark);
}

.brand-subtitle {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #8c6e75; /* Tom sutil da paleta para dar destaque elegante */
    text-transform: uppercase;
    margin-top: 2px;
}

@media (max-width: 680px) {
    .site-header {
        overflow: visible;
    }
    .header-inner {
        min-height: 76px;
        align-items: center;
        gap: 10px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .logo {
        flex: 1 1 auto;
        min-width: 0;
        gap: 8px;
    }

    .logo-mark {
        width: 42px;
        height: 42px;
    }

    .logo-text {
        min-width: 0;
    }

    .brand-name {
        font-size: 18px;
        line-height: 1.05;
        overflow-wrap: anywhere;
    }

    .brand-subtitle {
        font-size: 8px;
        letter-spacing: 0.05em;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .btn-header {
        flex: 0 0 auto;
        max-width: 112px;
        padding: 9px 12px;
        font-size: 12px;
        line-height: 1.15;
        text-align: center;
        white-space: normal;
    }
}

@media (max-width: 380px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-inner {
        gap: 8px;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
    }

    .brand-name {
        font-size: 17px;
    }

    .brand-subtitle {
        font-size: 7px;
    }

    .btn-header {
        max-width: 104px;
        padding: 8px 10px;
        font-size: 11px;
    }
}

/* HOLDING FAMILIAR LANDING PAGE */
.holding-page {
    --holding-ink: #271a1d;
    --holding-plum: #4a1628;
    --holding-plum-dark: #35101d;
    --holding-cream: #f8f4ef;
    --holding-sand: #e9ddd3;
    background: var(--holding-cream);
    color: var(--holding-ink);
}
.holding-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}
.holding-header {
    background: rgba(248,244,239,.94);
    border-bottom: 1px solid rgba(74,22,40,.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.holding-header-inner { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.holding-brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.holding-brand-mark { width: 42px; height: 42px; object-fit: contain; }
.holding-brand-copy { display: grid; gap: 1px; }
.holding-brand-copy strong { font: 20px/1.05 'Instrument Serif', Georgia, serif; }
.holding-brand-copy small { color: #8c6e75; font-size: 8px; font-weight: 700; letter-spacing: .12em; }
.holding-nav { display: flex; gap: 22px; margin-left: auto; font-size: 12px; color: #69585b; flex-flow: row; justify-content:center; }
.holding-nav a:hover { color: var(--holding-plum); }
.holding-header-cta, .holding-button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; border-radius: 999px; font-weight: 600; transition: transform .2s ease, background .2s ease, color .2s ease;}
.holding-header-cta { padding: 6px 18px; background: var(--holding-plum); color: #fff; font-size: 12px; text-align: center; }
.holding-header-cta:hover, .holding-button:hover { transform: translateY(-2px); }
.holding-hero { padding: 86px 0 92px; background: radial-gradient(circle at 75% 20%, rgba(212,163,115,.16), transparent 30%), var(--holding-cream); }
.holding-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 76px; align-items: center; }
.holding-kicker { margin-bottom: 18px; color: var(--holding-plum); font-size: 10px; font-weight: 700; letter-spacing: .2em; }
.holding-kicker-light { color: rgba(255,255,255,.64); }
.holding-hero h1, .holding-section h2, .holding-guidance h2, .holding-final-cta h2 { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; letter-spacing: -.02em; }
.holding-hero h1 { max-width: 680px; font-size: clamp(44px, 6vw, 78px); line-height: .98; color: var(--holding-ink); }
.holding-hero h1 em { color: var(--holding-plum); font-style: italic; }
.holding-hero-lead { max-width: 560px; margin-top: 26px; color: #685c5b; font-size: 17px; line-height: 1.65; }
.holding-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 34px; }
.holding-button { min-height: 50px; padding: 0 23px; font-size: 13px; }
.holding-button-primary { background: var(--holding-plum); color: #fff; box-shadow: 0 12px 28px rgba(74,22,40,.18); }
.holding-button-light { background: #fff; color: var(--holding-plum); }
.holding-button-outline { border: 1px solid rgba(255,255,255,.45); color: #fff; }
.holding-button-outline:hover { background: #fff; color: var(--holding-plum); }
.holding-text-link { color: var(--holding-plum); font-size: 12px; font-weight: 600; }
.holding-disclaimer { margin-top: 18px; color: #918486; font-size: 11px; }
.holding-hero-visual { position: relative; }
.holding-hero-image-wrap { position: relative; overflow: hidden; min-height: 480px; border-radius: 3px 96px 3px 3px; box-shadow: 22px 24px 0 rgba(74,22,40,.08); }
.holding-hero-image { width: 100%; height: 480px; object-fit: cover; filter: saturate(.8); }
.holding-visual-caption { position: absolute; right: 0; bottom: 0; left: 0; display: grid; gap: 5px; padding: 26px; color: #fff; background: linear-gradient(transparent, rgba(39,26,29,.82)); }
.holding-visual-caption span { font-size: 9px; letter-spacing: .2em; font-weight: 700; }
.holding-visual-caption strong { max-width: 300px; font: 26px/1.02 'Instrument Serif', Georgia, serif; }
.holding-hero-note { display: flex; gap: 11px; align-items: flex-start; max-width: 300px; margin: 20px 0 0 auto; color: #6d6060; font-size: 11px; line-height: 1.5; }
.holding-note-symbol { color: var(--holding-plum); font: 26px/1 'Instrument Serif', Georgia, serif; }
.holding-intro { padding: 84px 0; background: #fff; }
.holding-intro-grid, .holding-tax-grid, .holding-guidance-grid, .holding-final-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 88px; align-items: start; }
.holding-intro h2, .holding-section h2, .holding-guidance h2 { max-width: 540px; font-size: clamp(36px, 4.4vw, 58px); line-height: .98; color: var(--holding-ink); }
.holding-intro-text { max-width: 600px; padding-top: 30px; color: #65595a; font-size: 18px; line-height: 1.7; }
.holding-intro-text p + p { margin-top: 18px; }
.holding-section { padding: 105px 0; }
.holding-section-paper { background: var(--holding-sand); }
.holding-section-heading { max-width: 710px; margin-bottom: 45px; }
.holding-section-heading > p:last-child { max-width: 580px; margin-top: 20px; color: #66595a; font-size: 17px; }
.holding-feature-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; }
.holding-feature { padding: 34px; border: 1px solid rgba(74,22,40,.13); background: rgba(255,255,255,.58); }
.holding-feature-large { min-height: 335px; }
.holding-feature-accent { background: var(--holding-plum); color: #fff; }
.holding-feature-number { display: block; margin-bottom: 46px; color: var(--holding-plum); font: italic 22px/1 'Instrument Serif', Georgia, serif; }
.holding-feature-accent .holding-feature-number { color: #e4bfb0; }
.holding-feature h3, .holding-principles h3, .holding-profile h3 { margin-bottom: 15px; font: 30px/1 'Instrument Serif', Georgia, serif; }
.holding-feature p { color: #65595a; font-size: 15px; line-height: 1.7; }
.holding-feature-accent p, .holding-feature-accent li { color: rgba(255,255,255,.8); }
.holding-small-note { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(74,22,40,.13); font-size: 12px !important; }
.holding-list { display: grid; gap: 14px; padding: 0; list-style: none; }
.holding-list li { position: relative; padding-left: 22px; font-size: 14px; line-height: 1.45; }
.holding-list li::before { content: '◇'; position: absolute; left: 0; color: #e4bfb0; }
.holding-callout { display: grid; grid-template-columns: 150px 1fr; gap: 28px; margin-top: 28px; padding: 24px 28px; border-left: 4px solid var(--holding-plum); background: rgba(255,255,255,.5); }
.holding-callout strong { color: var(--holding-plum); font: italic 22px/1 'Instrument Serif', Georgia, serif; }
.holding-callout p { color: #65595a; font-size: 14px; line-height: 1.6; }
.holding-section-plain { background: var(--holding-cream); }
.holding-tax-copy { padding-top: 28px; color: #65595a; font-size: 16px; line-height: 1.7; }
.holding-tax-copy p + p { margin-top: 18px; }
.holding-principles { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 82px; }
.holding-principles > div { padding-top: 20px; border-top: 1px solid rgba(74,22,40,.25); }
.holding-principles span { display: block; margin-bottom: 42px; color: var(--holding-plum); font: italic 21px/1 'Instrument Serif', Georgia, serif; }
.holding-principles h3 { font-size: 28px; }
.holding-principles p { max-width: 480px; color: #65595a; font-size: 14px; line-height: 1.6; }
.holding-guidance { padding: 105px 0; background: #fff; }
.holding-guidance-copy > p:not(.holding-kicker) { max-width: 540px; margin: 24px 0 30px; color: #65595a; font-size: 16px; line-height: 1.7; }
.holding-profile { display: grid; grid-template-columns: 150px 1fr; gap: 25px; align-items: center; padding: 24px; background: var(--holding-cream); }
.holding-profile-image { width: 150px; height: 190px; object-fit: cover; object-position: center top; }
.holding-profile-label { margin-bottom: 11px; color: var(--holding-plum); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.holding-profile h3 { font-size: 28px; }
.holding-profile > div > p:last-child { color: #65595a; font-size: 13px; line-height: 1.55; }
.holding-final-cta { padding: 92px 0; background: var(--holding-plum); color: #fff; }
.holding-final-cta h2 { max-width: 650px; font-size: clamp(42px, 5vw, 66px); line-height: .97; }
.holding-final-action { max-width: 420px; padding-top: 22px; }
.holding-final-action p { margin-bottom: 28px; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.6; }
.holding-footer { padding: 22px 0; background: #2d101a; color: rgba(255,255,255,.56); font-size: 10px; }
.holding-footer-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.holding-whatsapp { width: 54px; height: 54px; right: 24px; bottom: 24px; }
.holding-whatsapp img { width: 28px; height: 28px; }
@media (min-width: 901px) {
    .holding-header-cta {
        min-width: 220px;
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 16px;
    }
    .holding-page .holding-nav a {
        color: #69585b;
        font-size: 12px;
        padding: 0;
        white-space: nowrap;
    }
}
@media (max-width: 900px) {
    .holding-nav { display: none;}
}
@media (max-width: 640px) {
    .holding-container { width: min(100% - 32px, 1180px); }
    .holding-header-inner { min-height: 68px; gap: 10px; }
    .holding-brand-mark { width: 34px; height: 34px; }
    .holding-brand-copy strong { font-size: 17px; }
    .holding-brand-copy small { font-size: 7px; }
    .holding-header-cta { max-width: 192px; padding: 9px 10px; font-size: 12px; line-height: 1.15; }
    .holding-hero { padding: 62px 0 70px; }
    .holding-hero h1 { font-size: clamp(42px, 14vw, 60px); }
    .holding-hero-lead { font-size: 16px; }
    .holding-hero-image-wrap, .holding-hero-image { min-height: 350px; height: 350px; }
    .holding-visual-caption strong { font-size: 23px; }
    .holding-intro, .holding-section, .holding-guidance { padding: 72px 0; }
    .holding-feature-grid, .holding-principles { grid-template-columns: 1fr; }
    .holding-feature { padding: 26px; }
    .holding-feature-number { margin-bottom: 34px; }
    .holding-callout { grid-template-columns: 1fr; gap: 12px; }
    .holding-profile { grid-template-columns: 92px 1fr; gap: 16px; padding: 16px; }
    .holding-profile-image { width: 92px; height: 130px; }
    .holding-profile h3 { font-size: 23px; }
    .holding-footer-inner { display: grid; }
}

@media (max-width: 1130px) {
    .english-page #sectionNavMenu { display: block !important; }
    .english-page #sectionNavMenu:not(.is-open) { visibility: hidden; opacity: 0; pointer-events: none; }
    .english-page #sectionNavMenu.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
    .english-page.menu-is-open #menuHamburger { display: none !important; }
}

/* MAIN PORTUGUESE PAGE MOBILE NAVIGATION */
.portuguese-page .pt-mobile-menu-head { display: contents; }
.portuguese-page .pt-nav-brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--dark); text-decoration: none; }
.portuguese-page .pt-nav-brand img { display: block; height: 4.5rem; width: auto; }
.portuguese-page .pt-nav-brand span { display: flex; flex-direction: column; gap: .12rem; text-align: left; white-space: nowrap; }
.portuguese-page .pt-nav-brand strong { color: var(--dark); font-family: 'Instrument Serif', Georgia, serif; font-size: 1.25rem; font-weight: 400; line-height: 1.05; }
.portuguese-page .pt-nav-brand small { color: #8c6e75; font-size: .48rem; font-weight: 700; letter-spacing: .11em; line-height: 1.2; }
.portuguese-page .language-switcher { display: flex; align-items: center; gap: .45rem; margin-left: .75rem; color: var(--muted); font-size: .78rem; }
.portuguese-page .language-switcher a { padding: 4px; color: inherit; text-decoration: none; }
.portuguese-page .language-switcher a:last-child { color: var(--burgundy); font-weight: 700; }

@media (min-width: 1131px) {
    .portuguese-page #sectionNavMenu nav { flex-direction: row; justify-content: space-between; max-width: 1240px; padding: 1rem 1.5rem; gap: 1rem; }
    .portuguese-page #sectionNavMenu nav ul { display: flex; align-items: center; gap: .25rem; }
    .portuguese-page #sectionNavMenu nav ul li { margin: 0; }
    .portuguese-page #sectionNavMenu nav ul li a { font-size: .78rem; letter-spacing: .08em; padding: 8px 12px; }
    .portuguese-page #menuFechar { display: none; }
}

@media (max-width: 1130px) {
    .portuguese-page #sectionNavMenu { display: none; position: fixed; inset: 0; z-index: 1000; margin: 0; background: rgba(30, 26, 24, .32); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s ease, visibility .25s ease; }
    .portuguese-page.menu-is-open #sectionNavMenu { display: block; opacity: 1; visibility: visible; pointer-events: auto; }
    .portuguese-page #sectionNavMenu nav { position: absolute; top: 0; right: 0; bottom: 0; width: min(100%, 420px); height: 100%; padding: 1.25rem 1.5rem 2rem; display: flex; flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 2.5rem; overflow-y: auto; background: var(--beige); box-shadow: -18px 0 45px rgba(53, 16, 29, .14); transform: translateX(100%); transition: transform .3s ease; }
    .portuguese-page.menu-is-open #sectionNavMenu nav { transform: translateX(0); }
    .portuguese-page .pt-mobile-menu-head { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }
    .portuguese-page .pt-nav-brand img { height: 4rem; }
    .portuguese-page .pt-nav-brand strong { font-size: 1.15rem; }
    .portuguese-page .pt-nav-brand small { font-size: .44rem; }
    .portuguese-page #menuFechar { position: static; display: flex; width: 44px; height: 44px; flex: 0 0 44px; }
    .portuguese-page #sectionNavMenu nav ul { display: flex; flex-direction: column; align-items: stretch; gap: .35rem; width: 100%; padding: 0; }
    .portuguese-page #sectionNavMenu nav ul li { float: none; margin: 0; }
    .portuguese-page #sectionNavMenu nav ul li a { display: block; padding: 1rem .25rem; color: var(--dark); font-size: 1.2rem; letter-spacing: .06em; text-align: left; border-bottom: 1px solid var(--line); }
    .portuguese-page #sectionNavMenu .language-switcher { justify-content: flex-start; gap: .75rem; margin: 1rem 0 0; border-bottom: 0; }
    .portuguese-page #sectionNavMenu .language-switcher a { display: inline-block; padding: .5rem 0; border-bottom: 0; font-weight: 700 !important; }
    .portuguese-page.menu-is-open #menuHamburger { display: none !important; }
}

@media (max-width: 680px) {
    .portuguese-page #sectionNavMenu nav { padding: .8rem 1rem 1.5rem; }
    .portuguese-page #sectionNavMenu nav ul li a { font-size: 1.08rem; letter-spacing: .04em; }
    .portuguese-page .pt-nav-brand img { height: 3.7rem; }
    .portuguese-page .pt-nav-brand strong { font-size: 1.05rem; }
    .portuguese-page .pt-nav-brand small { font-size: .4rem; letter-spacing: .08em; }
}