@charset "UTF-8";

/* Source: assets/css/main.css */
/* Fontes carregadas via Google Fonts no HTML */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Reserva o espaço dos ícones enquanto a fonte decorativa carrega sem bloquear a página. */
i.fi {
    display: inline-block;
    width: 1em;
    min-width: 1em;
    height: 1em;
    line-height: 1;
    vertical-align: -0.125em;
}

/* Fontes carregadas via <link> no HTML para melhor performance */

:root {
    /* Fontes para o site */
    --fonte-destaque: 'Cormorant Garamond', serif;
    --fonte-padrao: 'Inter', sans-serif;
    --fonte-legendas: 'Cormorant Garamond', serif;
    --fonte-botoes: 'Inter', sans-serif;

    /* Paleta de cores para o site */
    --cor-fundo: #0F2233;
    --cor-fundo-secundaria: #18354D;
    --cor-hover: #C8A86B;
    --cor-texto-1: #C8A86B;
    --cor-texto: #F4F1EA;
    --cor-texto-escuro: #111111;
    --cor-detalhes: #18354D;
    --cor-detalhes-1: #10202F;
    --cor-superficie: rgba(244, 241, 234, 0.06);
    --cor-superficie-forte: rgba(15, 34, 51, 0.92);
    --cor-borda-suave: rgba(200, 168, 107, 0.18);

    /* Adicionar novas */
    --spacing-small: 10px;
    --spacing-medium: 20px;
    --spacing-large: 40px;
    --border-radius: 5px;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    font-family: var(--fonte-padrao);
}

body {
    color: var(--cor-texto);
    background:
        radial-gradient(circle at 12% 10%, rgba(200, 168, 107, 0.08), transparent 24%),
        radial-gradient(circle at 88% 0%, rgba(24, 53, 77, 0.26), transparent 28%),
        linear-gradient(180deg, #091522 0%, #0F2233 52%, #111A25 100%);
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 100vh;
}

/* Header */
header {
    display: flex;
    width: calc(100% - 40px);
    min-height: 88px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 15px 20px;
    padding: 16px 28px;
    background:
        linear-gradient(180deg, rgba(15, 34, 51, 0.96) 0%, rgba(15, 34, 51, 0.88) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--cor-borda-suave);
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    min-height: 78px;
    margin: 10px 20px;
    padding: 12px 24px;
    background:
        linear-gradient(180deg, rgba(15, 34, 51, 0.98) 0%, rgba(15, 34, 51, 0.92) 100%);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

header>div.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

header>div.logo img {
    width: clamp(168px, 18vw, 244px);
    height: auto;
    transition: all 0.3s ease;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

header.scrolled>div.logo img {
    width: clamp(152px, 16vw, 214px);
    height: auto;
}

header>div.logo img:hover {
    transform: translateY(-1px);
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.24));
}

header ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

ul>li>a {
    font-family: var(--fonte-padrao);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--cor-texto);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 14px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.01em;
}

ul>li>a i {
    display: none;
}

li a:hover {
    color: var(--cor-texto);
    background-color: rgba(244, 241, 234, 0.08);
}

/* Menu item ativo */
.menu a.active,
.menu-items a.active {
    color: var(--cor-texto);
    background:
        linear-gradient(180deg, rgba(200, 168, 107, 0.16) 0%, rgba(200, 168, 107, 0.08) 100%);
    box-shadow: inset 0 0 0 1px rgba(200, 168, 107, 0.22);
}

/* Social icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(244, 241, 234, 0.1);
    background-color: rgba(244, 241, 234, 0.05);
    color: var(--cor-texto);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(244, 241, 234, 0.1);
    color: var(--cor-texto);
    transform: translateY(-2px);
}

.social-icons a i {
    font-size: 1rem;
}

.social-icons a[href*="wa.me"] {
    width: auto;
    min-width: 52px;
    padding: 0 16px;
    border-radius: 999px;
    border-color: rgba(200, 168, 107, 0.34);
    background: linear-gradient(135deg, rgba(200, 168, 107, 0.18) 0%, rgba(200, 168, 107, 0.12) 100%);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.social-icons a[href*="wa.me"]::after {
    content: "Falar no WhatsApp";
    margin-left: 8px;
    font-family: var(--fonte-botoes);
    font-size: 0.8rem;
    font-weight: 600;
}

.social-icons a[href*="wa.me"]:hover {
    background: linear-gradient(135deg, rgba(200, 168, 107, 0.28) 0%, rgba(200, 168, 107, 0.16) 100%);
}

@media (max-width: 1180px) {
    .social-icons a[href*="wa.me"]::after {
        display: none;
    }
}

@media (max-width: 1040px) {
    header {
        padding: 14px 22px;
    }

    ul > li > a {
        font-size: 0.86rem;
        padding: 10px 12px;
    }

    .social-icons a:not([href*="wa.me"]) {
        display: none;
    }
}

/* Main Content */
main {
    width: 100%;
    padding-top: 100px;
}

/* Home Section 1 */


/* Hero Badge */


@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

/* CTA Primary */




/* Benefícios Grid */












/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1f8f4d 0%, #25D366 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 30px rgba(11, 33, 24, 0.28);
    z-index: 999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
    border: 2px solid rgba(244, 241, 234, 0.28);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 1.8rem;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
}
































@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}



/* Social Icons */
div.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.social-icons a {
    text-decoration: none;
    font-size: 1.2rem;
}

div.social-icons>a>i {
    color: white;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons>a>i:hover {
    color: var(--cor-hover);
    transform: scale(1.2);
}

/* Main Content */
main {
    width: 100%;
    padding-top: 100px;
}


/* Home Section 2 */












/* Serviços em Destaque */


















/* Números */










/* Formulário de Contato */








@media (min-width: 768px) {
    .form-grupo {
        grid-template-columns: repeat(2, 1fr);
    }
}









/* Footer */
footer {
    background:
        linear-gradient(180deg, rgba(12, 24, 36, 0.96) 0%, rgba(15, 34, 51, 0.98) 100%);
    padding: 60px 20px 20px;
    border-top: 1px solid var(--cor-borda-suave);
}

























footer a {
    color: var(--cor-texto-1);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--cor-texto);
}



/* Animações */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Página de Serviços */




































/* Página de Contato */














































































@keyframes flutuar {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .cta-botoes {
        flex-direction: column;
    }

    .escritorio-digital {
        padding: 20px;
    }

    .beneficios-digital {
        grid-template-columns: 1fr;
    }
}

/* Página Sobre */








































































/* Página de Ferramentas */








/* Calculadoras */
































/* Links Úteis */
















/* Documentos */




















/* Página da Calculadora */
.calculadora-page {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem;
    padding-top: 100px;
    box-sizing: border-box;
    overflow-x: hidden;
}



.calculadora-container {
    width: 100%;
    max-width: 1200px;
    margin: 1rem auto;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    background: var(--cor-fundo);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}













@media (min-width: 992px) {
    .calculadora-container {
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .resultado-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}





/* Range Input Styling */
input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 1rem 0;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--cor-texto-1);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}



/* Tooltips */




/* Estilos para o header na página da calculadora */
.calculadora-page header {
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.calculadora-page .calculadora-container {
    position: relative;
    z-index: 2;
}

/* Fazer o header ficar invisível quando sobrepuser a calculadora */
.calculadora-page header.transparent {
    background-color: transparent;
    backdrop-filter: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .calculadora-page {
        padding: 1rem;
    }

    .calculadora-hero {
        padding: 1.5rem;
    }

    .calculadora-hero h1 {
        font-size: 2rem;
    }

    .calculadora-rescisao {
        padding: 1.5rem;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Menu Mobile e Responsividade */
.menu-mobile {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

@media screen and (max-width: 768px) {
    .menu-desktop {
        display: none;
    }

    .menu-mobile {
        display: block;
    }

    .menu-toggle {
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 10px;
        border-radius: 5px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(5px);
    }

    .menu-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .menu-items {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(15, 23, 42, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 8px 0;
        min-width: 180px;
        margin-top: 10px;
    }

    .menu-items.active {
        display: block;
        animation: slideIn 0.3s ease-out;
    }

    .menu-items a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        color: var(--cor-texto-1);
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .menu-items a i {
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
    }

    .menu-items a:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(5px);
    }

    .container {
        padding: 0 20px;
    }

    .content {
        margin-top: 60px;
    }

    .card {
        margin-bottom: 20px;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos para a Calculadora de Férias */
.calculadora-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 2rem;
    background: var(--cor-fundo);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Seção de Entrada de Dados */




























/* Seção do Passo a Passo */


















/* Seção de Resultados */






















/* Range Input Styling */
input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 1rem 0;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--cor-texto-1);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}



/* Tooltips */




/* Estilos para o header na página da calculadora */
.calculadora-page header {
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.calculadora-page .calculadora-container {
    position: relative;
    z-index: 2;
}

/* Fazer o header ficar invisível quando sobrepuser a calculadora */
.calculadora-page header.transparent {
    background-color: transparent;
    backdrop-filter: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .calculadora-page {
        padding: 1rem;
    }

    .calculadora-hero {
        padding: 1.5rem;
    }

    .calculadora-hero h1 {
        font-size: 2rem;
    }

    .calculadora-rescisao {
        padding: 1.5rem;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .detalhes-calculo {
        margin: 0;
        padding: 0.5rem;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .table-container {
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .detalhes-calculo table {
        min-width: 300px;
        width: 100%;
    }

    .detalhes-calculo th,
    .detalhes-calculo td {
        padding: 6px 4px;
        font-size: 0.8rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .detalhes-calculo table {
        min-width: 280px;
    }

    .detalhes-calculo th,
    .detalhes-calculo td {
        padding: 4px 3px;
        font-size: 0.75rem;
    }
}

/* Estilos da tabela de detalhes */








/* Estilos Melhorados para Calculadoras */
.calculadora-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}













/* Botões da Calculadora */










/* Cards de Resultado */








/* Tooltips */






/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ===== Página de Erro 404 ===== */








@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}





























/* ============================================
   MOBILE CRITICAL STYLES (FALLBACK)
   ============================================ */

@media screen and (max-width: 768px) {

    /* Header Mobile */
    header {
        flex-direction: row !important;
        height: auto !important;
        min-height: 50px;
        padding: 8px 12px !important;
        margin: 8px !important;
        width: calc(100% - 16px) !important;
        border-radius: 8px !important;
        gap: 8px;
    }

    header .logo img {
        display: none !important;
    }

    header nav {
        display: none !important;
    }

    /* Hero Mobile - Mais compacto */
    .home1 {
        min-height: auto !important;
        padding: 90px 20px 40px !important;
        gap: 12px;
    }

    .hero-badge {
        font-size: 0.7rem !important;
        padding: 6px 16px !important;
        margin-bottom: 8px !important;
        background: rgba(232, 130, 14, 0.2) !important;
        border: 1px solid rgba(232, 130, 14, 0.5) !important;
    }

    .home1 h1 {
        font-size: 1.5rem !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
    }

    .home1 p {
        font-size: 0.9rem !important;
        margin-bottom: 20px !important;
        opacity: 0.9;
    }

    .cta-button.cta-primary {
        width: 100% !important;
        max-width: 260px !important;
        font-size: 0.95rem !important;
        padding: 14px 24px !important;
        border-radius: 8px !important;
    }

    /* Seção Digital - Mais compacta */
    .home2 {
        padding: 30px 15px !important;
    }

    .home2 .conteudo1 h2#pri {
        font-size: 1.3rem !important;
        margin-bottom: 8px !important;
    }

    .home2 .conteudo1 p#segu {
        font-size: 0.85rem !important;
        margin-bottom: 20px !important;
        opacity: 0.85;
    }

    /* Benefícios Mobile */
    .beneficios-grid {
        padding: 0 10px !important;
        gap: 10px !important;
        margin-top: 15px !important;
    }

    .beneficio-item {
        padding: 12px !important;
        border-radius: 10px !important;
    }

    .beneficio-item i {
        font-size: 1.2rem !important;
    }

    .beneficio-item h3 {
        font-size: 0.9rem !important;
        margin-bottom: 2px !important;
    }

    .beneficio-item p {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
    }

    /* Serviços Mobile */
    .servicos-destaque {
        padding: 30px 15px !important;
    }

    .servicos-destaque h2 {
        font-size: 1.3rem !important;
        margin-bottom: 20px !important;
    }

    .servicos-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .servico-card {
        padding: 20px 15px !important;
    }

    .servico-card i {
        font-size: 1.8rem !important;
    }

    .servico-card h3 {
        font-size: 1rem !important;
    }

    .servico-card p {
        font-size: 0.85rem !important;
    }

    /* Números Mobile */
    .numeros {
        padding: 30px 15px !important;
    }

    .numeros h2 {
        font-size: 1.3rem !important;
    }

    .numeros-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .numero-item {
        padding: 15px !important;
    }

    .numero {
        font-size: 2rem !important;
    }

    /* WhatsApp Mobile */
    .whatsapp-float {
        bottom: 18px !important;
        right: 18px !important;
        width: 52px !important;
        height: 52px !important;
    }

    .whatsapp-float i {
        font-size: 1.5rem !important;
    }

    .whatsapp-tooltip {
        display: none !important;
    }

    /* CTA Cards */
    .cta-cards {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .cta-card {
        padding: 20px 15px !important;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 25px !important;
    }
}

/* Source: assets/css/mediaquery.css */
/*Todas as demas midias*/

/*typical device breakpoints
Pequenas telas: ate 600px
Celulares: de 600ps ate 768px
Tablets: de 768px ate 992px
Desktops: de 992px ate 1200px
Grandes telas : maior que 1200px*/

@media print {

    /*empressora*/
    * {
        font-family: 'courier new';
    }

    img#phone {
        display: none
    }

    img#tablet {
        display: none
    }

    img#impressora {
        display: none
    }

    img#tv {
        display: none
    }

    img#pc {
        display: none
    }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
    /*tablet*/


    img#phone {
        display: none
    }

    img#tablet {
        display: none
    }

    img#impressora {
        display: none
    }

    img#tv {
        display: none
    }

    img#pc {
        display: none
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    /*desktop*/


    img#phone {
        display: none
    }

    img#tablet {
        display: none
    }

    img#impressora {
        display: none
    }

    img#tv {
        display: none
    }

    img#pc {
        display: none
    }
}

@media screen and (min-width: 1200px) {
    /*grandes telas*/


    img#phone {
        display: none
    }

    img#tablet {
        display: none
    }

    img#impressora {
        display: none
    }

    img#tv {
        display: none
    }

    img#pc {
        display: none
    }
}

/* Dispositivos Móveis (até 768px) */
@media screen and (max-width: 768px) {
    /* No mobile, o background no body com cover+scroll nao funciona
       porque o body e muito alto (pagina inteira). Aplicamos a imagem
       diretamente na .home1 que tem min-height:100vh. */
    body {
        background-image: none !important;
        background-color: var(--cor-fundo);
    }

    /* Ocultar icones sociais no header mobile */
    header .social-icons {
        display: none !important;
    }

    /* Header Mobile - Alinhado e Funcional */
    header {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        min-height: 74px !important;
        padding: 8px 18px !important;
        margin: 0 !important;
        width: 100% !important;
        border-radius: 0 !important;
        top: 0 !important;
        left: 0 !important;
        background-color: rgba(15, 34, 51, 0.96) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        z-index: 2000 !important;
        border: none !important;
    }

    header .logo {
        display: block !important;
        margin: 0 !important;
    }

    header .logo img {
        display: block !important;
        width: 142px !important;
        height: auto !important;
        border-radius: 0 !important;
        object-fit: contain !important;
    }

    header.scrolled {
        min-height: 68px !important;
        background-color: rgba(15, 34, 51, 0.98) !important;
    }

    header.scrolled .logo img {
        width: 132px !important;
        height: auto !important;
    }

    /* Esconde o menu desktop e ícones sociais */
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 10px !important;
        background: rgba(244, 241, 234, 0.06) !important;
        border-radius: 14px !important;
        border: 1px solid rgba(200, 168, 107, 0.16);
        cursor: pointer;
        width: 44px;
        height: 44px;
        transition: all 0.3s ease;
    }

    .menu-toggle:hover {
        background: rgba(200, 168, 107, 0.12) !important;
        border-color: var(--cor-texto-1);
    }

    .menu-toggle i {
        color: white;
        font-size: 1.2rem;
    }

    /* Menu Mobile Overlay */
    header nav,
    .site-header nav,
    .header-nav {
        display: none;
        position: fixed;
        top: 74px;
        left: 0;
        width: 100%;
        height: calc(100vh - 74px);
        background: rgba(15, 34, 51, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        z-index: 1500;
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    header nav.active,
    .site-header nav.active,
    .header-nav.active {
        display: flex !important;
        opacity: 1;
        transform: translateY(0);
    }

    header nav ul.menu,
    .site-header nav ul.menu,
    .header-nav ul.menu,
    .site-header .header-nav {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100%;
        padding: 40px 20px !important;
        align-items: center !important;
    }

    header nav ul.menu li {
        width: 100%;
        text-align: center;
    }

    header nav ul.menu li a {
        font-size: 1.04rem !important;
        padding: 15px !important;
        justify-content: center !important;
        width: 100%;
        border-radius: 14px;
    }

    /* Ajuste para o Cookie Banner no Mobile */
    .cookie-banner {
        padding: 1rem !important;
        text-align: left !important;
    }

    .cookie-banner p {
        font-size: 0.8rem !important;
        margin-bottom: 0.8rem !important;
    }

    .cookie-buttons {
        gap: 0.5rem !important;
        flex-wrap: nowrap !important;
    }

    .cookie-btn {
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem !important;
        flex: 1;
        text-align: center;
    }

    /* Hero Section mobile - aplicar foto diretamente aqui */
    .home1 {
        padding: 110px 20px 50px !important;
        min-height: 100vh !important;
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(15, 23, 42, 0.85)),
                          url(../img/FT-HOME.png) !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
    }

    .home1 h1 {
        font-size: 2em !important;
        line-height: 1.2;
    }

    .home1 p {
        font-size: 1.1rem !important;
    }

    .typing-text {
        white-space: normal !important;
        overflow: visible !important;
        animation: none !important;
        border-right: none !important;
        font-size: 1rem !important;
        text-align: center;
        max-width: 90%;
    }

    .cta-button.cta-primary {
        display: block !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
    }

    /* General responsive grids */
    .beneficios-grid,
    .servicos-grid,
    .numeros-grid,
    .footer-content {
        grid-template-columns: 1fr !important;
    }

    .numero-item {
        padding: 15px !important;
    }

    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        width: 55px !important;
        height: 55px !important;
    }
}

/* Ajustes de Impressão */
@media print {

    header,
    footer,
    .social-icons,
    .cta-button,
    .contato-rapido,
    .servicos-destaque {
        display: none;
    }

    body {
        background: none;
        color: #000;
    }

    .home1,
    .home2 {
        padding: 20px;
    }

    .home1 h1 {
        color: #000;
        font-size: 24pt;
    }

    .conteudo2 p {
        font-size: 12pt;
        line-height: 1.5;
    }
}

/* Usar unidades relativas */
:root {
    --font-size-base: 16px;
    --font-size-large: 1.25rem;
    --font-size-xlarge: 1.5rem;
}

/* Adicionar breakpoints intermediários */
@media screen and (max-width: 480px) {
    /* Estilos para telas muito pequenas */
}

/* Media Queries para Calculadora de Férias */

/* Tablets e dispositivos menores */
@media (max-width: 1200px) {
    .calculadora-container {
        width: 100%;
        max-width: 100%;
        margin: 0.5rem auto;
        padding: 1rem;
        gap: 1.5rem;
        overflow-x: hidden;
    }

    .entrada-dados,
    .passo-a-passo,
    .resultados {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
        margin: 0 auto;
    }
}

/* Dispositivos móveis */
@media (max-width: 768px) {
    .calculadora-page {
        width: 100%;
        padding: 0;
        padding-top: 70px;
        overflow-x: hidden;
    }

    .calculadora-hero {
        width: 90%;
        margin: 0.5rem auto;
        padding: 1rem;
    }

    .calculadora-container {
        width: 90%;
        margin: 0.5rem auto;
        padding: 0.5rem;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .entrada-dados,
    .passo-a-passo,
    .resultados {
        width: 100%;
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 1rem;
        box-sizing: border-box;
    }

    .form-group {
        width: 100%;
        margin-bottom: 0.8rem;
    }

    .form-group input[type="number"],
    .form-group input[type="text"],
    .form-group select {
        width: 100%;
        box-sizing: border-box;
        padding: 0.6rem;
        font-size: 16px;
    }

    .resultado-cards {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .card {
        width: 100%;
        box-sizing: border-box;
    }

    .grafico-container {
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    table {
        width: 100%;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .detalhes-calculo {
        width: 100%;
        box-sizing: border-box;
        overflow-x: auto;
    }
}

/* Ajustes específicos para telas muito pequenas */
@media (max-width: 360px) {
    .calculadora-page {
        padding: 0;
        padding-top: 60px;
    }

    .calculadora-hero {
        width: 95%;
        margin: 0.3rem auto;
        padding: 0.8rem;
    }

    .calculadora-container {
        width: 95%;
        margin: 0.3rem auto;
    }
}

/* Modo paisagem em dispositivos móveis */
@media screen and (max-width: 900px) and (orientation: landscape) {
    .home1 {
        height: auto;
        padding: 100px 20px 40px;
    }

    .home1 h1 {
        font-size: 2.5em;
    }

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Media Queries para Calculadoras */
@media screen and (max-width: 480px) {
    .calculadora-container {
        padding: 1rem;
        margin: 0.5rem;
    }

    .entrada-dados {
        gap: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input[type="number"] {
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .btn-calcular,
    .btn-exemplo {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .resultado-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card {
        padding: 1rem;
    }

    .tooltip .tooltip-text {
        width: 160px;
        font-size: 0.8rem;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .calculadora-container {
        padding: 1.5rem;
        margin: 1rem;
    }

    .resultado-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .calculadora-container {
        max-width: 90%;
        margin: 0 auto;
    }

    .resultado-cards {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

/* Mobile visual fixes for home */
@media screen and (max-width: 600px) {
    .home1 {
        margin: 0 !important;
        padding: 100px 16px 28px !important;
        /* Nao sobrescrever o background-image aplicado no bloco 768px */
    }

    .cta-button.cta-primary {
        width: 100% !important;
        max-width: 340px !important;
    }

    .home2 {
        margin-top: 0 !important;
        padding: 26px 16px 36px !important;
    }
}

/* ============================================================
   Desktop Only — re-enable parallax (fixed) effect
   Only applied on 992px+ where iOS/Android restrictions don't apply
   ============================================================ */
@media screen and (min-width: 992px) {
    body {
        background-attachment: fixed;
    }
}

@media screen and (orientation: landscape) and (max-height: 600px) {
    .calculadora-container {
        max-height: 85vh;
        overflow-y: auto;
        padding-right: 1rem;
    }

    .entrada-dados {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .resultado-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Source: assets/css/cookies.css */
/* Estilos do Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(15, 34, 51, 0.95);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.25rem 2rem;
    z-index: 1000;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 2px solid var(--cor-texto-1);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-banner p {
    margin: 0 0 1rem 0;
    color: var(--cor-texto);
    max-width: 800px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.cookie-banner a {
    color: var(--cor-texto-1);
    text-decoration: none;
    font-weight: 600;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

/* Botões de Cookies */
.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.settings-btn {
    background: rgba(244, 241, 234, 0.08);
    color: var(--cor-texto);
    border: 1px solid rgba(244, 241, 234, 0.18);
}

.settings-btn:hover {
    background: rgba(244, 241, 234, 0.14);
}

.accept-btn {
    background: var(--cor-texto-1);
    color: white;
}

.accept-btn:hover {
    background: var(--cor-hover);
    transform: translateY(-2px);
}

/* Modal de Configurações */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cookie-settings {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-settings.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    color: black;
}

.cookie-settings h3 {
    margin: 0 0 1.5rem 0;
    color: #333;
    font-size: 1.5rem;
}

/* Opções de Cookies */
.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

/* Switch Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--cor-texto-1);
}

input:disabled + .slider {
    background-color: #e9ecef;
    cursor: not-allowed;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Responsividade */
@media (max-width: 768px) {
    .cookie-banner {
        text-align: center;
    }

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

    .cookie-settings {
        width: 95%;
        padding: 1.5rem;
    }

    .cookie-option {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Source: assets/css/site-v2.css */
:root {
    --soul-ui-surface: rgba(15, 34, 51, 0.84);
    --soul-ui-surface-strong: rgba(9, 22, 34, 0.94);
    --soul-ui-surface-soft: rgba(244, 241, 234, 0.05);
    --soul-ui-line: rgba(200, 168, 107, 0.14);
    --soul-ui-line-strong: rgba(200, 168, 107, 0.3);
    --soul-ui-text-soft: rgba(244, 241, 234, 0.84);
    --soul-ui-text-muted: rgba(244, 241, 234, 0.64);
    --soul-ui-shadow: 0 28px 64px rgba(0, 0, 0, 0.24);
    --soul-ui-shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.18);
    --soul-ui-radius-xl: 30px;
    --soul-ui-radius-lg: 24px;
    --soul-ui-radius-md: 18px;
    --soul-ui-max: 1180px;
    --soul-ui-navy: #071b2e;
}

body.home-page,
body.internal-page {
    position: relative;
    background-image:
        radial-gradient(circle at 12% 10%, rgba(200, 168, 107, 0.12), transparent 24%),
        radial-gradient(circle at 88% 14%, rgba(24, 53, 77, 0.24), transparent 28%),
        linear-gradient(180deg, #081420 0%, #0F2233 46%, #111A25 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body.home-page::before,
body.internal-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 85%, rgba(244, 241, 234, 0.03), transparent 18%),
        radial-gradient(circle at 86% 82%, rgba(200, 168, 107, 0.05), transparent 20%);
    pointer-events: none;
    z-index: -1;
}

.site-main-v2 {
    width: 100%;
    padding: 132px 0 40px;
}

.section-shell {
    width: min(calc(100% - 32px), var(--soul-ui-max));
    margin: 0 auto;
}

.section-block {
    padding: 20px 0;
}

.section-panel {
    background: linear-gradient(180deg, rgba(15, 34, 51, 0.94) 0%, rgba(12, 29, 44, 0.84) 100%);
    border: 1px solid var(--soul-ui-line);
    border-radius: var(--soul-ui-radius-xl);
    box-shadow: var(--soul-ui-shadow);
    padding: 34px;
    position: relative;
    overflow: hidden;
}

.section-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(200, 168, 107, 0.11), transparent 25%),
        radial-gradient(circle at bottom left, rgba(24, 53, 77, 0.18), transparent 26%);
    pointer-events: none;
}

.section-panel > * {
    position: relative;
    z-index: 1;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading .eyebrow-label,
.page-hero .eyebrow-label,
.detail-hero .eyebrow-label {
    margin-bottom: 14px;
}

.eyebrow-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    border: 1px solid rgba(200, 168, 107, 0.24);
    background: rgba(200, 168, 107, 0.1);
    color: var(--cor-texto-1);
    font-family: var(--fonte-botoes);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    justify-self: start;
    width: fit-content;
    max-width: 100%;
}

.eyebrow-label i {
    font-size: 0.95rem;
}

.section-heading h2,
.page-hero h1,
.detail-hero h1,
.hero-copy-card h1 {
    font-family: var(--fonte-destaque);
    font-size: clamp(2rem, 4vw, 3.45rem);
    line-height: 0.98;
    margin: 0;
    letter-spacing: 0.01em;
}

.section-heading p,
.page-hero p,
.detail-hero p,
.hero-copy-card p,
.copy-muted {
    color: var(--soul-ui-text-soft);
    font-size: 1.02rem;
    line-height: 1.75;
}

.hero-section {
    padding: 6px 0 14px;
}













.hero-actions-v2,
.inline-actions,
.cta-actions-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.btn-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 16px;
    border: 1px solid transparent;
    font-family: var(--fonte-botoes);
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-v2:hover {
    transform: translateY(-2px);
}

.menu-toggle-glyph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

.btn-v2-primary {
    color: #111111;
    background: linear-gradient(135deg, #dec28f 0%, #C8A86B 55%, #b59255 100%);
    box-shadow: 0 20px 34px rgba(200, 168, 107, 0.22);
}

.btn-v2-secondary {
    color: var(--cor-texto);
    border-color: rgba(244, 241, 234, 0.14);
    background: rgba(244, 241, 234, 0.06);
}









.hero-stat-card,
.proof-card,
.pain-card,
.solution-card,
.audience-card,
.offer-card-v2,
.trust-card-v2,
.process-card,
.insight-card,
.contact-card-v2,
.fit-card,
.workflow-card,
.detail-card,
.faq-card-v2,
.service-overview-card,
.blog-link-card {
    background: rgba(244, 241, 234, 0.05);
    border: 1px solid var(--soul-ui-line);
    border-radius: var(--soul-ui-radius-md);
    padding: 22px;
    box-shadow: var(--soul-ui-shadow-soft);
}

.hero-stat-card h3,
.offer-card-v2 h3,
.contact-card-v2 h3,
.service-overview-card h3,
.detail-card h3 {
    font-family: var(--fonte-destaque);
    font-size: 1.18rem;
    margin-bottom: 10px;
}

.hero-stat-card p,
.offer-card-v2 p,
.pain-card p,
.solution-card p,
.audience-card p,
.trust-card-v2 p,
.process-card p,
.insight-card p,
.contact-card-v2 p,
.fit-card p,
.workflow-card p,
.detail-card p,
.faq-card-v2 p,
.service-overview-card p,
.blog-link-card p {
    color: var(--soul-ui-text-soft);
    line-height: 1.7;
}



.founder-profile {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.founder-profile img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 24px;
    border: 2px solid rgba(200, 168, 107, 0.3);
}

.founder-profile strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.founder-profile span {
    color: var(--cor-texto-1);
    font-weight: 600;
}

.hero-side-list,
.check-list,
.benefit-list-v2,
.offer-list-v2,
.detail-list,
.faq-bullets {
    list-style: none;
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.hero-side-list li,
.check-list li,
.benefit-list-v2 li,
.offer-list-v2 li,
.detail-list li,
.faq-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--soul-ui-text-soft);
    line-height: 1.65;
}

.hero-side-list li i,
.check-list li i,
.benefit-list-v2 li i,
.offer-list-v2 li i,
.detail-list li i,
.faq-bullets li i {
    color: var(--cor-texto-1);
    margin-top: 4px;
}









.audience-card h3,
.pain-card h3,
.solution-card h3,
.trust-card-v2 h3,
.process-card h3,
.fit-card h3,
.workflow-card h3,
.faq-card-v2 h3,
.blog-link-card h3 {
    font-family: var(--fonte-destaque);
    font-size: 1.08rem;
    margin: 0 0 10px;
}

.audience-card .card-icon,
.pain-card .card-icon,
.solution-card .card-icon,
.trust-card-v2 .card-icon,
.process-card .card-icon,
.contact-card-v2 .card-icon,
.fit-card .card-icon,
.workflow-card .card-icon,
.service-overview-card .card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(200, 168, 107, 0.12);
    color: var(--cor-texto-1);
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.offer-card-v2 .offer-top,
.service-overview-card .offer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(200, 168, 107, 0.14);
    border: 1px solid rgba(200, 168, 107, 0.26);
    color: #f2dfbc;
    font-size: 0.8rem;
    font-weight: 700;
}

.offer-card-v2 .offer-footer,
.service-overview-card .offer-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.text-link-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cor-texto-1);
    font-weight: 700;
    text-decoration: none;
}

.text-link-v2:hover {
    text-decoration: underline;
}







.proof-strip {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
}

.responsible-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--soul-ui-line);
    border-radius: var(--soul-ui-radius-lg);
    padding: 26px;
    display: grid;
    gap: 18px;
}

.responsible-card .founder-profile {
    grid-template-columns: 120px minmax(0, 1fr);
}

.responsible-card .founder-profile img {
    width: 120px;
    height: 120px;
    border-radius: 28px;
}

.process-grid,
.workflow-grid,
.fit-grid,
.service-overview-grid,
.quick-link-grid {
    display: grid;
    gap: 18px;
}

.process-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.proof-strip > *,
.process-grid > *,
.footer-grid-v2 > * {
    min-width: 0;
}

.process-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
}

.process-card strong,
.workflow-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(200, 168, 107, 0.14);
    color: var(--cor-texto-1);
    margin-bottom: 16px;
}

.final-cta-panel,
.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    border-radius: var(--soul-ui-radius-xl);
    border: 1px solid var(--soul-ui-line);
    background: linear-gradient(135deg, rgba(8, 20, 32, 0.96) 0%, rgba(15, 34, 51, 0.92) 58%, rgba(24, 53, 77, 0.96) 100%);
    box-shadow: var(--soul-ui-shadow);
    padding: 34px;
}

.final-cta-panel h2,
.page-hero h1,
.detail-hero h1 {
    margin-bottom: 14px;
}

.final-cta-panel p {
    max-width: 700px;
    color: var(--soul-ui-text-soft);
    line-height: 1.75;
}



















.faq-details {
    display: grid;
    gap: 14px;
}

.faq-details details {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--soul-ui-line);
    border-radius: 18px;
    padding: 18px 20px;
}

.faq-details summary {
    list-style: none;
    cursor: pointer;
    font-family: var(--fonte-destaque);
    font-size: 1.02rem;
    font-weight: 700;
}

.faq-details summary::-webkit-details-marker {
    display: none;
}

.faq-details p {
    margin-top: 12px;
    color: var(--soul-ui-text-soft);
    line-height: 1.7;
}







































.blog-link-card .text-link-v2 {
    margin-top: 14px;
}

.site-footer-v2 {
    width: min(calc(100% - 32px), var(--soul-ui-max));
    margin: 24px auto 0;
    padding: 28px 0 42px;
}

.footer-panel-v2 {
    background: linear-gradient(180deg, rgba(8, 20, 32, 0.96) 0%, rgba(12, 29, 44, 0.9) 100%);
    border: 1px solid var(--soul-ui-line);
    border-radius: var(--soul-ui-radius-xl);
    box-shadow: var(--soul-ui-shadow);
    padding: 30px;
}

.footer-grid-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(180px, 0.74fr) minmax(240px, 0.92fr);
    gap: 24px;
    align-items: start;
}

.footer-brand-v2::before {
    content: none;
}

.footer-brand-v2 a {
    display: inline-flex;
    max-width: 100%;
    margin-bottom: 16px;
}

.footer-brand-v2 img {
    display: block;
    width: min(250px, 100%);
    height: auto;
}

.footer-brand-v2 strong,
.footer-group-v2 h3 {
    display: block;
    font-family: var(--fonte-destaque);
    font-size: 1.42rem;
    margin-bottom: 12px;
}

.footer-brand-v2 p,
.footer-group-v2 p,
.footer-group-v2 li,
.footer-group-v2 a {
    color: var(--soul-ui-text-soft);
    line-height: 1.75;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-group-v2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-group-v2 a {
    text-decoration: none;
}

.footer-group-v2 a:hover {
    color: var(--cor-texto-1);
}

.footer-meta-v2 {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--soul-ui-line);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.footer-meta-v2 p {
    color: var(--soul-ui-text-muted);
    margin: 0;
}

.wa-link-inline {
    color: #8bf0b5;
}

.footer-contact-options {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(200, 168, 107, 0.18);
}

.footer-contact-options p {
    margin: 0 0 2px;
    color: var(--color-gold-soft);
    font-size: 0.84rem;
    font-weight: 700;
}

.footer-contact-options a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 12px;
    border: 1px solid rgba(200, 168, 107, 0.26);
    border-radius: 12px;
    background: rgba(244, 241, 234, 0.06);
    color: var(--color-gold-soft);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
}

.footer-contact-options a:hover,
.footer-contact-options a:focus-visible {
    border-color: var(--color-gold);
    background: rgba(200, 168, 107, 0.14);
    color: var(--color-cream);
}





















.body-copy-emphasis {
    color: var(--cor-texto-1);
    font-weight: 700;
}

.reviews-panel {
    overflow: hidden;
}

.reviews-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 26px;
}

.reviews-heading-row .section-heading {
    margin-bottom: 0;
}

.google-rating-summary {
    flex: 0 0 210px;
    display: grid;
    justify-items: start;
    gap: 3px;
    padding: 18px 20px;
    border: 1px solid rgba(200, 168, 107, 0.26);
    border-radius: 20px;
    background: rgba(244, 241, 234, 0.06);
    color: var(--cor-texto);
    text-decoration: none;
    box-shadow: var(--soul-ui-shadow-soft);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.google-rating-summary:hover {
    transform: translateY(-2px);
    border-color: rgba(200, 168, 107, 0.56);
    background: rgba(244, 241, 234, 0.09);
}

.google-rating-summary:focus-visible,
.reviews-carousel__button:focus-visible,
.reviews-carousel__viewport:focus-visible {
    outline: 3px solid rgba(200, 168, 107, 0.72);
    outline-offset: 3px;
}

.google-rating-summary__brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--soul-ui-text-soft);
    font-size: 0.9rem;
    font-weight: 700;
}

.google-rating-summary__score {
    font-family: var(--fonte-destaque);
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1;
}

.google-rating-summary__count {
    color: var(--soul-ui-text-muted);
    font-size: 0.84rem;
}

.review-stars {
    color: #f4c96b;
    font-family: Arial, sans-serif;
    font-size: 0.94rem;
    letter-spacing: 0.08em;
    line-height: 1;
}

.reviews-carousel {
    min-width: 0;
}

.reviews-carousel__viewport {
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 4px;
    scrollbar-width: none;
}

.reviews-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.reviews-carousel__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 32px) / 3);
    gap: 16px;
    align-items: stretch;
    list-style: none;
    margin: 0;
    padding: 4px;
}

.review-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 290px;
    padding: 22px;
    border: 1px solid var(--soul-ui-line);
    border-radius: 20px;
    background:
        radial-gradient(circle at top right, rgba(200, 168, 107, 0.1), transparent 34%),
        rgba(255, 255, 255, 0.045);
    scroll-snap-align: start;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.review-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.review-card__top > span:last-child {
    color: var(--soul-ui-text-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.review-card blockquote {
    margin: 0 0 22px;
    color: var(--soul-ui-text-soft);
    font-size: 0.98rem;
    line-height: 1.72;
    overflow-wrap: anywhere;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(200, 168, 107, 0.14);
}

.review-card__author strong {
    color: var(--cor-texto);
    font-size: 0.92rem;
    line-height: 1.35;
}

.review-card__avatar {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(200, 168, 107, 0.32);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(200, 168, 107, 0.25), rgba(200, 168, 107, 0.08));
    color: #f1dfba;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.reviews-carousel__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 20px;
}

.reviews-carousel__controls {
    display: flex;
    gap: 10px;
}

.reviews-carousel__button {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(200, 168, 107, 0.34);
    border-radius: 50%;
    background: rgba(200, 168, 107, 0.1);
    color: var(--cor-texto);
    cursor: pointer;
    font-size: 1.15rem;
    transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
}

.reviews-carousel__button:hover:not(:disabled) {
    transform: translateY(-2px);
    background: rgba(200, 168, 107, 0.2);
}

.reviews-carousel__button:disabled {
    cursor: default;
    opacity: 0.34;
}

.reviews-google-link {
    justify-content: flex-end;
    text-align: right;
}

@media (max-width: 1100px) {
    .hero-grid-v2,
    .intro-band,
    .proof-strip,
    .contact-layout-v2,
    .grid-4,
    .service-path-grid,
    .blog-link-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid,
    .tools-commercial-band,
    .detail-grid,
    .contact-grid-v2,
    .hero-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid-v2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reviews-carousel__track {
        grid-auto-columns: calc((100% - 16px) / 2);
    }
}

@media (max-width: 860px) {
    .site-main-v2 {
        padding-top: 96px;
    }

    .section-panel,
    .hero-copy-card,
    .hero-side-card,
    .page-hero,
    .detail-hero,
    .footer-panel-v2 {
        padding: 24px;
        border-radius: 24px;
    }

    .hero-grid-v2,
    .grid-2,
    .grid-3,
    .dual-panel,
    .proof-strip,
    .intro-band,
    .process-grid,
    .insight-grid,
    .faq-grid-v2,
    .contact-layout-v2,
    .service-overview-grid,
    .tools-commercial-band,
    .service-path-grid,
    .blog-link-grid,
    .hero-mini-grid,
    .contact-grid-v2,
    .detail-grid,
    .footer-grid-v2 {
        grid-template-columns: 1fr;
    }

    .founder-profile,
    .responsible-card .founder-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-profile img,
    .responsible-card .founder-profile img {
        margin: 0 auto;
    }

    .request-options {
        grid-template-columns: 1fr;
    }

    .reviews-heading-row {
        align-items: stretch;
        flex-direction: column;
    }

    .google-rating-summary {
        width: 100%;
        max-width: 280px;
        flex-basis: auto;
    }

    .footer-meta-v2 {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    body.home-page,
    body.internal-page {
        background-attachment: scroll;
    }

    .section-shell,
    .site-footer-v2 {
        width: min(calc(100% - 20px), var(--soul-ui-max));
    }

    .hero-copy-card h1,
    .page-hero h1,
    .detail-hero h1,
    .section-heading h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .hero-actions-v2,
    .inline-actions,
    .cta-actions-v2 {
        flex-direction: column;
    }

    .btn-v2 {
        width: 100%;
    }

    .inline-point,
    .mini-chip {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 680px) {
    .reviews-carousel__track {
        grid-auto-columns: 88%;
    }

    .reviews-carousel__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .reviews-google-link {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-copy-card,
    .hero-side-card,
    .section-panel,
    .page-hero,
    .detail-hero,
    .footer-panel-v2,
    .contact-form-panel {
        padding: 20px;
    }

    .hero-stat-card,
    .proof-card,
    .pain-card,
    .solution-card,
    .audience-card,
    .offer-card-v2,
    .trust-card-v2,
    .process-card,
    .insight-card,
    .contact-card-v2,
    .fit-card,
    .workflow-card,
    .detail-card,
    .faq-card-v2,
    .service-overview-card,
    .blog-link-card {
        padding: 18px;
    }

    .site-main-v2 {
        padding-top: 86px;
    }

    .review-card {
        min-height: 310px;
        padding: 18px;
    }
}

/* Source: assets/css/motion.css */
:root {
    --motion-duration-fast: 180ms;
    --motion-duration-medium: 440ms;
    --motion-duration-slow: 820ms;
    --motion-ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
    --motion-ease-emphasized: cubic-bezier(0.16, 1, 0.3, 1);
    --motion-lift-sm: -4px;
    --motion-lift-md: -10px;
    --motion-glow-soft: 0 18px 44px rgba(68, 123, 255, 0.16);
    --motion-glow-gold: 0 16px 34px rgba(200, 168, 107, 0.2);
    --radius-premium: 28px;
    --radius-premium-sm: 18px;
}

html {
    scroll-behavior: smooth;
}

body {
    accent-color: #5aa7ff;
}

body.motion-ready {
    --focus-ring: 0 0 0 3px rgba(98, 149, 255, 0.16);
}

body.motion-ready * {
    scroll-margin-top: 118px;
}

body.motion-ready [data-reveal] {
    opacity: 0;
    transform: translate3d(0, var(--reveal-distance, 18px), 0) scale(var(--reveal-scale, 0.985));
    filter: saturate(0.9);
    transition:
        opacity var(--motion-duration-medium) var(--motion-ease-standard),
        transform var(--motion-duration-medium) var(--motion-ease-standard),
        filter var(--motion-duration-medium) var(--motion-ease-standard);
    transition-delay: var(--reveal-delay, 0ms);
}

body.motion-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: none;
}

body.motion-ready [data-reveal="left"] {
    --reveal-distance: 0px;
    transform: translate3d(-18px, 0, 0) scale(0.99);
}

body.motion-ready [data-reveal="right"] {
    --reveal-distance: 0px;
    transform: translate3d(18px, 0, 0) scale(0.99);
}

body.motion-ready [data-reveal="zoom"] {
    --reveal-distance: 0px;
    transform: scale(0.96);
}

body.reduced-motion [data-reveal],
body.motion-ready.reduced-motion [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
}

.btn-v2,
.hub-btn,
.submit-button,
.hub-filter-btn,
.hub-link,
.hero-direct-link,
.text-link-v2,
.service-anchor-row a,
.topbar-link,
.primary-btn,
.secondary-btn,
.option-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transform: translateZ(0);
    transition:
        transform var(--motion-duration-fast) var(--motion-ease-standard),
        box-shadow var(--motion-duration-fast) var(--motion-ease-standard),
        border-color var(--motion-duration-fast) var(--motion-ease-standard),
        background-color var(--motion-duration-fast) var(--motion-ease-standard),
        color var(--motion-duration-fast) var(--motion-ease-standard);
}

.btn-v2::after,
.hub-btn::after,
.submit-button::after,
.hub-filter-btn::after,
.hub-link::after,
.hero-direct-link::after,
.service-anchor-row a::after,
.topbar-link::after,
.primary-btn::after,
.secondary-btn::after,
.option-card::after {
    content: "";
    position: absolute;
    inset: -120% auto auto -30%;
    width: 54%;
    height: 280%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
    transform: rotate(18deg) translate3d(-34%, 0, 0);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity var(--motion-duration-fast) var(--motion-ease-standard),
        transform 620ms var(--motion-ease-emphasized);
}

@media (hover: hover) and (pointer: fine) {
    .btn-v2:hover,
    .hub-btn:hover,
    .submit-button:hover,
    .hub-filter-btn:hover,
    .hub-link:hover,
    .hero-direct-link:hover,
    .text-link-v2:hover,
    .service-anchor-row a:hover,
    .topbar-link:hover,
    .primary-btn:hover,
    .secondary-btn:hover {
        transform: translateY(var(--motion-lift-sm));
    }

    .btn-v2:hover::after,
    .hub-btn:hover::after,
    .submit-button:hover::after,
    .hub-filter-btn:hover::after,
    .hub-link:hover::after,
    .hero-direct-link:hover::after,
    .service-anchor-row a:hover::after,
    .topbar-link:hover::after,
    .primary-btn:hover::after,
    .secondary-btn:hover::after,
    .option-card:hover::after {
        opacity: 1;
        transform: rotate(18deg) translate3d(112%, 0, 0);
    }
}

.btn-v2.is-pressed,
.hub-btn.is-pressed,
.submit-button.is-pressed,
.hub-filter-btn.is-pressed,
.hub-link.is-pressed,
.hero-direct-link.is-pressed,
.text-link-v2.is-pressed,
.service-anchor-row a.is-pressed,
.topbar-link.is-pressed,
.primary-btn.is-pressed,
.secondary-btn.is-pressed,
.option-card.is-pressed {
    transform: translateY(1px) scale(0.985);
}

.offer-card-v2,
.service-overview-card,
.contact-card-v2,
.fit-card,
.workflow-card,
.trust-card-v2,
.faq-card-v2,
.request-option,
.faq-details details,
.hero-kpi,
.hero-signal-card,
.digital-office-card,
.responsible-card,
.proof-support-card,
.final-cta-panel,
.contact-form-panel {
    transition:
        transform 320ms var(--motion-ease-standard),
        box-shadow 320ms var(--motion-ease-standard),
        border-color 320ms var(--motion-ease-standard),
        background-color 320ms var(--motion-ease-standard);
}

.btn-v2:focus-visible,
.hub-btn:focus-visible,
.submit-button:focus-visible,
.hub-filter-btn:focus-visible,
.hub-link:focus-visible,
.hero-direct-link:focus-visible,
.text-link-v2:focus-visible,
.service-anchor-row a:focus-visible,
.topbar-link:focus-visible,
.primary-btn:focus-visible,
.secondary-btn:focus-visible,
.option-card:focus-visible,
.hub-search-input:focus-visible,
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring), var(--motion-glow-soft);
}

.home-main-premium {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.home-main-premium::before,
.home-main-premium::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-main-premium::before {
    inset: 2% -8% auto;
    height: 56rem;
    background:
        radial-gradient(circle at 14% 16%, rgba(92, 121, 255, 0.12), transparent 22%),
        radial-gradient(circle at 82% 10%, rgba(140, 113, 255, 0.1), transparent 18%),
        radial-gradient(circle at 50% 32%, rgba(143, 242, 182, 0.08), transparent 24%);
    filter: blur(12px);
    opacity: 0.92;
    animation: homeAuraFloat 18s ease-in-out infinite alternate;
    z-index: 0;
}

.home-main-premium::after {
    inset: 120px -10% 0;
    background:
        repeating-linear-gradient(110deg, rgba(108, 159, 255, 0.05) 0 1px, transparent 1px 120px),
        repeating-linear-gradient(180deg, rgba(143, 242, 182, 0.035) 0 1px, transparent 1px 92px);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.94) 12%, rgba(0, 0, 0, 0.9) 90%, transparent 100%);
    opacity: 0.4;
    animation: homeLedgerDrift 20s linear infinite;
    z-index: 0;
}

.site-main-v2 > .hero-section,
.site-main-v2 > .section-block {
    position: relative;
    z-index: 1;
}

.hero-home-premium {
    position: relative;
    padding-top: 12px;
    overflow: clip;
}

.hero-home-premium .section-shell {
    position: relative;
    z-index: 1;
}



















.hero-home-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
    gap: 24px;
    align-items: start;
}

.hero-home-copy {
    padding: 40px 40px 34px;
    background:
        radial-gradient(circle at 0% 0%, rgba(92, 121, 255, 0.14), transparent 34%),
        radial-gradient(circle at 100% 18%, rgba(131, 102, 255, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(6, 16, 26, 0.98) 0%, rgba(10, 24, 38, 0.94) 100%);
}

.hero-home-copy h1 {
    max-width: 14.1ch;
    margin-bottom: 16px;
    font-size: clamp(2.42rem, 3.9vw, 4.1rem);
    line-height: 0.92;
    letter-spacing: -0.02em;
}

.hero-home-copy p {
    max-width: 58ch;
    line-height: 1.68;
}

.hero-eyebrow-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
}











@media (hover: hover) and (pointer: fine) {
    .hero-direct-link:hover {
        transform: translateY(var(--motion-lift-sm));
        border-color: rgba(110, 154, 255, 0.2);
        background: rgba(255, 255, 255, 0.06);
        box-shadow: var(--motion-glow-soft);
    }
}

.hero-visual-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px;
    background:
        radial-gradient(circle at 16% 20%, rgba(65, 144, 255, 0.22), transparent 30%),
        radial-gradient(circle at 84% 18%, rgba(133, 100, 255, 0.2), transparent 26%),
        linear-gradient(160deg, rgba(7, 18, 30, 0.96) 0%, rgba(10, 24, 40, 0.94) 54%, rgba(16, 37, 58, 0.9) 100%);
}





























































.hero-proof-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.hero-proof-stat {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.hero-proof-stat span,
.proof-support-item span,
.audience-track-item span {
    color: rgba(217, 232, 255, 0.62);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-proof-stat strong {
    display: block;
    margin-top: 8px;
    color: #f7fbff;
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.hero-proof-stat p {
    margin: 10px 0 0;
    color: rgba(244, 241, 234, 0.72);
    line-height: 1.55;
    font-size: 0.88rem;
}

.hero-proof-stat::after {
    content: "";
    position: absolute;
    inset: auto 18px 0 18px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(92, 121, 255, 0.86), rgba(143, 242, 182, 0.74));
    opacity: 0.72;
}

.audience-fusion-panel {
    background:
        radial-gradient(circle at 18% 20%, rgba(92, 121, 255, 0.1), transparent 30%),
        linear-gradient(180deg, rgba(12, 29, 44, 0.96) 0%, rgba(10, 23, 36, 0.92) 100%);
}

.audience-layout {
    display: grid;
    grid-template-columns: minmax(290px, 0.78fr) minmax(0, 1.22fr);
    gap: 18px;
    align-items: start;
}

.audience-callout-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 82% 14%, rgba(133, 100, 255, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(9, 23, 37, 0.98) 0%, rgba(12, 30, 47, 0.94) 100%);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.audience-callout-card::before {
    content: "";
    position: absolute;
    inset: auto -14% -20% auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(92, 121, 255, 0.18), transparent 72%);
    pointer-events: none;
}

.audience-callout-card > * {
    position: relative;
    z-index: 1;
}

.audience-callout-card h3 {
    margin: 0;
    font-family: var(--fonte-destaque);
    font-size: 1.62rem;
    line-height: 1.08;
}

.audience-callout-card p {
    margin: 0;
    color: rgba(244, 241, 234, 0.74);
    line-height: 1.7;
}

.audience-track-list {
    display: grid;
    gap: 14px;
}

.audience-track-item {
    display: grid;
    gap: 10px;
    padding: 14px 16px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.audience-track-meta {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.audience-track-meta strong {
    color: #f7fbff;
    font-size: 0.9rem;
    text-align: right;
}

.audience-track-bar {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.audience-track-bar::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--audience-fill, 70%);
    border-radius: inherit;
    background: linear-gradient(90deg, #5b79ff 0%, #8ff2b6 100%);
    animation: reportFillLoop 6.2s var(--motion-ease-standard) infinite;
}

.audience-callout-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.audience-card-v3 {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
}

.audience-card-v3::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 100% 0%, rgba(92, 121, 255, 0.08), transparent 26%),
        radial-gradient(circle at 0% 100%, rgba(200, 168, 107, 0.06), transparent 24%);
    pointer-events: none;
}

.audience-card-v3 > * {
    position: relative;
    z-index: 1;
}

.audience-card-v3 .card-icon {
    margin-bottom: 16px;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: rgba(92, 121, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(92, 121, 255, 0.16);
}

.audience-card-v3 .card-icon i {
    animation: iconFloat 4.8s ease-in-out infinite;
}

.audience-card-v3:nth-child(2) .card-icon i {
    animation-delay: 220ms;
}

.audience-card-v3:nth-child(3) .card-icon i {
    animation-delay: 440ms;
}

.audience-card-v3:nth-child(4) .card-icon i {
    animation-delay: 660ms;
}

.audience-card-v3 h3 {
    margin: 0 0 10px;
    font-family: var(--fonte-destaque);
    font-size: 1.08rem;
    line-height: 1.24;
}

.audience-card-v3 p {
    margin: 0;
    margin-top: 10px;
    color: rgba(244, 241, 234, 0.72);
    line-height: 1.66;
}

.services-home-panel .section-heading {
    max-width: 820px;
}

.services-home-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.offer-card-v2--spotlight {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: 24px;
}

.offer-card-v2--spotlight::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 100% 0%, rgba(92, 121, 255, 0.08), transparent 26%),
        radial-gradient(circle at 0% 100%, rgba(200, 168, 107, 0.08), transparent 24%);
    pointer-events: none;
}

.offer-card-v2--spotlight > * {
    position: relative;
    z-index: 1;
}

.offer-card-v2--featured {
    border-color: rgba(107, 154, 255, 0.18);
    box-shadow: var(--motion-glow-soft);
}

.mini-panel {
    margin-top: 18px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(8, 18, 29, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 12px;
}

.mini-tax-line,
.mini-spark-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(244, 241, 234, 0.76);
    font-size: 0.86rem;
}

.mini-tax-line strong,
.mini-spark-line strong {
    color: #f7fbff;
    font-size: 0.92rem;
}

.mini-tax-bar,
.mini-spark-bar {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.mini-tax-bar::after,
.mini-spark-bar::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--bar-fill, 70%);
    border-radius: inherit;
    background: linear-gradient(90deg, #5b79ff 0%, #7ac9ff 100%);
    animation: reportFillLoop 6s var(--motion-ease-standard) infinite;
}

.mini-tax-line.is-negative .mini-tax-bar::after {
    background: linear-gradient(90deg, #f47373 0%, #ff9b7c 100%);
}

.mini-spark-chart {
    height: 56px;
    display: block;
    width: 100%;
}

.mini-spark-chart path,
.mini-spark-chart polyline {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mini-spark-chart polyline {
    stroke: url(#consultingGradient);
    stroke-width: 4;
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
    animation: sparkDraw 4.8s var(--motion-ease-standard) infinite;
}

.mini-spark-chart path {
    stroke: rgba(255, 255, 255, 0.16);
    stroke-width: 2;
}

.dre-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 14%, rgba(92, 121, 255, 0.14), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(128, 112, 255, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(7, 18, 31, 0.98) 0%, rgba(11, 27, 43, 0.96) 100%);
}

.dre-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.82fr);
    gap: 22px;
    align-items: start;
}

.dre-table {
    display: grid;
    gap: 10px;
}

.dre-row {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(120px, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    opacity: 0.34;
    transform: translate3d(0, 8px, 0);
    transition:
        opacity var(--motion-duration-medium) var(--motion-ease-standard),
        transform var(--motion-duration-medium) var(--motion-ease-standard),
        border-color var(--motion-duration-medium) var(--motion-ease-standard),
        box-shadow var(--motion-duration-medium) var(--motion-ease-standard);
}

.dre-row.is-row-visible {
    opacity: 1;
    transform: none;
}

.dre-row.is-row-emphasis {
    border-color: rgba(95, 223, 159, 0.3);
    box-shadow: 0 22px 34px rgba(18, 62, 48, 0.22);
    background: linear-gradient(180deg, rgba(20, 52, 44, 0.5), rgba(13, 35, 27, 0.44));
}

.dre-label {
    display: grid;
    gap: 4px;
}

.dre-label span {
    font-size: 0.8rem;
    color: rgba(244, 241, 234, 0.56);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dre-label strong {
    font-size: 1rem;
}

.dre-bar-track {
    position: relative;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.dre-bar-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--dre-bar, 0%);
    border-radius: inherit;
    background: linear-gradient(90deg, #5b79ff 0%, #8bc9ff 100%);
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 780ms var(--motion-ease-emphasized);
}

.dre-row.is-row-visible .dre-bar-fill {
    transform: scaleX(1);
}

.dre-row.is-negative .dre-bar-fill {
    background: linear-gradient(90deg, #f47c7c 0%, #ffb484 100%);
}

.dre-value {
    font-size: 1rem;
    letter-spacing: -0.02em;
    color: #f7fbff;
}

.dre-insight-card {
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.16);
}

.dre-insight-card h3 {
    font-family: var(--fonte-destaque);
    font-size: 1.46rem;
    margin: 0 0 8px;
}

.dre-insight-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.dre-insight-item {
    display: grid;
    gap: 8px;
}

.dre-insight-item span {
    color: rgba(244, 241, 234, 0.62);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dre-insight-item strong {
    font-size: 1.08rem;
}

.dre-insight-bar {
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.dre-insight-bar::after {
    content: "";
    display: block;
    width: var(--insight-fill, 40%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(92, 121, 255, 0.95), rgba(145, 188, 255, 0.95));
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 880ms var(--motion-ease-emphasized);
}

.dre-section.is-dre-active .dre-insight-bar::after {
    transform: scaleX(1);
}

.dre-footnote {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(244, 241, 234, 0.74);
    opacity: 0;
    transform: translate3d(0, 8px, 0);
    transition:
        opacity var(--motion-duration-medium) var(--motion-ease-standard),
        transform var(--motion-duration-medium) var(--motion-ease-standard);
}

.dre-section.is-dre-complete .dre-footnote {
    opacity: 1;
    transform: none;
}

.trust-metric-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0 0;
}

.proof-strip {
    align-items: stretch;
}

.proof-trust-column {
    display: grid;
    gap: 18px;
    grid-template-rows: auto 1fr;
    min-width: 0;
}

.proof-support-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 18px;
    align-content: start;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 88% 10%, rgba(92, 121, 255, 0.1), transparent 28%),
        linear-gradient(180deg, rgba(12, 31, 48, 0.96) 0%, rgba(10, 24, 38, 0.92) 100%);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.proof-support-card::before {
    content: "";
    position: absolute;
    inset: auto -12% -18% auto;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(133, 100, 255, 0.18), transparent 70%);
    pointer-events: none;
}

.proof-support-card > * {
    position: relative;
    z-index: 1;
}

.proof-support-header {
    display: grid;
    gap: 10px;
}

.proof-support-header h3 {
    margin: 0;
    font-family: var(--fonte-destaque);
    font-size: 1.42rem;
    line-height: 1.06;
}

.proof-support-header p {
    margin: 0;
    color: rgba(244, 241, 234, 0.76);
    line-height: 1.68;
}

.proof-support-list {
    display: grid;
    gap: 14px;
    margin-top: auto;
}

.proof-support-item {
    display: grid;
    gap: 10px;
    padding: 14px 16px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-support-meta {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.proof-support-meta strong {
    color: #f7fbff;
    font-size: 0.92rem;
    font-weight: 700;
    text-align: right;
}

.proof-support-bar {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.proof-support-bar::after {
    left: 0;
    right: auto;
    bottom: auto;
    top: 0;
    width: var(--support-fill, 72%);
    height: 100%;
    background: linear-gradient(90deg, #5b79ff 0%, #8ff2b6 100%);
    animation: reportFillLoop 6.2s var(--motion-ease-standard) infinite;
}

.proof-strip .section-panel {
    display: grid;
    gap: 22px;
    align-content: start;
}

.proof-strip .section-heading {
    max-width: none;
    margin-bottom: 0;
}

.proof-strip .section-heading h2 {
    max-width: 13.2ch;
}

.proof-strip .section-heading p {
    max-width: 54ch;
    line-height: 1.68;
}

.proof-strip .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.proof-strip .process-card {
    padding: 18px;
}

.trust-metric {
    padding: 16px;
    border-radius: 18px;
    background: rgba(244, 241, 234, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-metric strong {
    display: block;
    font-size: 1.6rem;
    letter-spacing: -0.04em;
}

.trust-metric span {
    display: block;
    margin-top: 6px;
    color: rgba(244, 241, 234, 0.66);
    line-height: 1.5;
    font-size: 0.86rem;
}



























.tax-calc-row.is-active {
    opacity: 1;
    border-color: rgba(223, 195, 146, 0.22);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.14);
    transform: translateY(-1px);
}

.tax-calc-row.is-active::before {
    transform: scaleX(1);
}







.tax-calc-result.is-complete {
    opacity: 1;
    border-color: rgba(143, 242, 182, 0.26);
    box-shadow: 0 22px 36px rgba(18, 73, 54, 0.22);
}



































.contact-card-v2 .card-icon,
.workflow-card .card-icon,
.trust-card-v2 .card-icon {
    transition:
        transform 320ms var(--motion-ease-standard),
        box-shadow 320ms var(--motion-ease-standard),
        background-color 320ms var(--motion-ease-standard);
}

@media (hover: hover) and (pointer: fine) {
    .contact-card-v2:hover .card-icon,
    .workflow-card:hover .card-icon,
    .trust-card-v2:hover .card-icon {
        transform: translateY(-2px) scale(1.04);
        box-shadow: var(--motion-glow-soft);
        background-color: rgba(92, 121, 255, 0.16);
    }

    .hero-kpi:hover,
    .hero-proof-stat:hover,
    .digital-office-card:hover,
    .audience-card-v3:hover,
    .offer-card-v2:hover,
    .service-overview-card:hover,
    .contact-card-v2:hover,
    .fit-card:hover,
    .workflow-card:hover,
    .trust-card-v2:hover,
    .faq-card-v2:hover,
    .request-option:hover,
    .faq-details details:hover,
    .responsible-card:hover,
    .proof-support-card:hover {
        transform: translateY(var(--motion-lift-sm));
        border-color: rgba(110, 154, 255, 0.18);
        box-shadow: var(--motion-glow-soft);
    }
}





.form-group.is-focused {
    transform: translateY(-1px);
}

.form-group.is-focused label,
.form-group.is-filled label {
    color: #f7fbff;
}

.form-group.is-filled input,
.form-group.is-filled select,
.form-group.is-filled textarea {
    border-color: rgba(92, 121, 255, 0.18);
}













body[data-page="ir-2026"] .option-card.is-active {
    border-color: rgba(245, 185, 66, 0.38);
    box-shadow: 0 18px 28px rgba(245, 185, 66, 0.12);
}

@keyframes heroEyeScan {
    0%,
    18%,
    100% {
        transform: translateX(0) scaleY(1);
    }

    24% {
        transform: translateX(-2px) scaleY(0.95);
    }

    48% {
        transform: translateX(3px) scaleY(1);
    }

    52% {
        transform: translateX(3px) scaleY(0.14);
    }

    56% {
        transform: translateX(3px) scaleY(1);
    }
}

@keyframes heroVisorGlow {
    0%,
    100% {
        opacity: 0.72;
        transform: scaleX(0.96);
    }

    40%,
    60% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes heroScannerSweep {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0;
    }

    8%,
    86% {
        opacity: 1;
    }

    48% {
        transform: translateY(198px);
        opacity: 1;
    }
}

@keyframes reportFillLoop {
    0%,
    100% {
        transform: scaleX(0.24);
        opacity: 0.64;
    }

    34% {
        transform: scaleX(1);
        opacity: 1;
    }

    64% {
        transform: scaleX(0.88);
        opacity: 0.92;
    }
}

@keyframes sparkDraw {
    0%,
    100% {
        stroke-dashoffset: 180;
        opacity: 0.48;
    }

    26%,
    72% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes iconFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes homeAuraFloat {
    0% {
        transform: translate3d(-1.5%, 0, 0) scale(0.98);
    }

    100% {
        transform: translate3d(1.5%, 2.5%, 0) scale(1.04);
    }
}

@keyframes homeLedgerDrift {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 0.24;
    }

    50% {
        opacity: 0.42;
    }

    100% {
        transform: translate3d(-3.5%, 2%, 0);
        opacity: 0.24;
    }
}

@keyframes heroAuraDrift {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(0.96);
    }

    50% {
        transform: translate3d(2.5%, -2%, 0) scale(1.04);
    }
}

@keyframes heroAuraTrail {
    0% {
        opacity: 0;
        transform: translate3d(-8%, 0, 0) scaleX(0.88);
    }

    14%,
    76% {
        opacity: 0.56;
    }

    100% {
        opacity: 0;
        transform: translate3d(10%, 0, 0) scaleX(1.08);
    }
}

@media (max-width: 1180px) {
    .hero-home-grid,
    .audience-layout,
    .tax-hero-grid,
    .dre-layout {
        grid-template-columns: 1fr;
    }

    .hero-home-copy h1,
    .hub-hero.hub-hero--calculator h1 {
        max-width: 14ch;
    }

    .hero-analyst-figure {
        width: min(42%, 260px);
    }

    .report-surface {
        width: min(54%, 310px);
    }

    .hero-proof-band,
    .hero-direct-links,
    .audience-grid,
    .proof-strip .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-strip {
        grid-template-columns: 1fr;
    }

    .proof-trust-column {
        grid-template-rows: auto;
    }

    .proof-strip .section-heading h2 {
        max-width: none;
    }
}

@media (max-width: 860px) {
    .hero-home-copy,
    .hero-visual-card,
    .tax-hero-copy,
    .tax-visual-panel {
        padding: 24px;
    }

    .hero-home-copy h1 {
        max-width: none;
    }

    .hero-kpi-row,
    .trust-metric-row,
    .services-home-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .hero-direct-links,
    .hero-proof-band,
    .proof-strip .process-grid {
        grid-template-columns: 1fr;
    }

    .analyst-scene {
        min-height: 380px;
        padding: 20px;
    }

    .hero-analyst-figure {
        width: min(46%, 220px);
        inset: 44px auto auto 8px;
    }

    .report-surface {
        right: 14px;
        inset: 86px 14px 72px auto;
        width: min(57%, 270px);
    }

    .hero-aura-field {
        inset: -18px -12% auto;
        height: 560px;
        opacity: 0.8;
    }

    .audience-card-v3,
    .offer-card-v2--spotlight {
        padding: 20px;
    }

    .dre-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .hero-home-copy,
    .hero-visual-card {
        padding: 20px;
    }

    .home-main-premium::after,
    .hero-aura-field {
        opacity: 0.5;
    }

    .hero-eyebrow-stack,
    .tax-hero-pills {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-proof-pill,
    .hero-visual-chip,
    .tax-hero-pills span {
        width: 100%;
        justify-content: center;
    }

    .analyst-scene {
        min-height: 312px;
    }

    .hero-analyst-figure {
        width: 46%;
        inset: 62px auto auto -8px;
    }

    .report-surface {
        inset: 70px 12px 62px auto;
        width: 60%;
        padding: 16px 14px 14px;
    }

    .report-line span,
    .report-line strong,
    .report-metric span,
    .report-metric strong {
        font-size: 0.76rem;
    }

    .report-bottom {
        grid-template-columns: 1fr;
    }

    .tax-calc-row,
    .tax-calc-result {
        padding-left: 14px;
        padding-right: 14px;
    }

    body.home-page .whatsapp-float {
        opacity: 0;
        transform: translate3d(0, 14px, 0) scale(0.94);
        pointer-events: none;
    }

    body.home-page.home-float-active .whatsapp-float {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
        scroll-behavior: auto !important;
    }
}

/* Source: assets/css/hero-background.css */
body.home-page .home-main-premium::before,
body.home-page .home-main-premium::after,
body.home-page .hero-aura-field {
    display: none;
}

body.home-page .hero-home-premium {
    position: relative;
    overflow: visible;
}

body.home-page .hero-main {
    position: relative;
    isolation: isolate;
    overflow: visible;
}

body.home-page .hero-content {
    position: relative;
    z-index: 2;
}

body.home-page .site-main-v2 {
    position: relative;
}

body.home-page .hero-bg-interactive {
    --hero-bg-shift-x: 0;
    --hero-bg-shift-y: 0;
    --hero-bg-glow-x: 62%;
    --hero-bg-glow-y: 34%;
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    border-radius: 0;
    pointer-events: none;
}

body.home-page .hero-bg-interactive::before {
    content: "";
    position: absolute;
    left: var(--hero-bg-glow-x);
    top: var(--hero-bg-glow-y);
    width: clamp(280px, 34vw, 520px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(103, 155, 255, 0.22) 0%, rgba(103, 155, 255, 0.1) 34%, rgba(103, 155, 255, 0.02) 62%, transparent 78%);
    filter: blur(10px);
    opacity: 0.72;
    mix-blend-mode: screen;
}

body.home-page .hero-bg-canvas,
body.home-page .hero-bg-overlay,
body.home-page .hero-bg-fade,
body.home-page .hero-bg-panels {
    position: absolute;
    inset: 0;
}

body.home-page .hero-bg-canvas {
    width: 100%;
    height: 100%;
    opacity: 0.98;
}

body.home-page .hero-bg-panels {
    z-index: 1;
}

body.home-page .hero-bg-panel {
    position: absolute;
    display: grid;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 22px;
    border: 1px solid rgba(125, 167, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(14, 31, 49, 0.08) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 22px 46px rgba(2, 8, 16, 0.18);
    opacity: 0.42;
    transform: translate3d(calc(var(--hero-bg-shift-x) * var(--panel-shift-x, 14px)), calc(var(--hero-bg-shift-y) * var(--panel-shift-y, 14px)), 0);
    animation: heroBackgroundPanelFloat 15s ease-in-out infinite;
}

body.home-page .hero-bg-panel-label {
    color: rgba(224, 237, 255, 0.54);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.home-page .hero-bg-lines {
    display: grid;
    gap: 7px;
}

body.home-page .hero-bg-lines span,
body.home-page .hero-bg-indicators span::after {
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(114, 154, 255, 0.84), rgba(159, 122, 255, 0.56));
}

body.home-page .hero-bg-lines span {
    display: block;
    height: 3px;
}

body.home-page .hero-bg-lines span:nth-child(1) {
    width: 72%;
}

body.home-page .hero-bg-lines span:nth-child(2) {
    width: 88%;
}

body.home-page .hero-bg-lines span:nth-child(3) {
    width: 58%;
}

body.home-page .hero-bg-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 74px;
}

body.home-page .hero-bg-bars span {
    flex: 1;
    height: var(--bar-height, 50%);
    min-height: 22px;
    border-radius: 999px 999px 10px 10px;
    background: linear-gradient(180deg, rgba(158, 123, 255, 0.84) 0%, rgba(88, 140, 255, 0.7) 58%, rgba(88, 140, 255, 0.18) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

body.home-page .hero-bg-indicators {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

body.home-page .hero-bg-indicators span {
    position: relative;
    min-height: 30px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(16, 31, 50, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.06);
}

body.home-page .hero-bg-indicators span::after {
    content: "";
    position: absolute;
    inset: auto 7px 7px;
    height: 3px;
}

body.home-page .hero-bg-panel--flow {
    top: 11%;
    left: 58%;
    width: clamp(186px, 17vw, 240px);
    --panel-shift-x: -18px;
    --panel-shift-y: 16px;
    animation-delay: -2.4s;
}

body.home-page .hero-bg-panel--dre {
    top: 38%;
    right: 7%;
    width: clamp(172px, 15vw, 214px);
    --panel-shift-x: 15px;
    --panel-shift-y: -14px;
    animation-delay: -6.2s;
}

body.home-page .hero-bg-panel--tax {
    left: 10%;
    top: 66%;
    width: clamp(176px, 16vw, 224px);
    --panel-shift-x: -12px;
    --panel-shift-y: 12px;
    animation-delay: -9.4s;
}

body.home-page .hero-bg-panel--trust {
    right: 12%;
    top: 72%;
    width: clamp(176px, 16vw, 228px);
    --panel-shift-x: 10px;
    --panel-shift-y: -12px;
    animation-delay: -11.2s;
}

body.home-page .hero-bg-overlay {
    z-index: 2;
    background:
        radial-gradient(circle at 16% 12%, rgba(4, 11, 19, 0.95) 0%, rgba(4, 11, 19, 0.82) 16%, rgba(4, 11, 19, 0.44) 34%, transparent 60%),
        radial-gradient(circle at 88% 8%, rgba(10, 18, 31, 0.5) 0%, transparent 26%),
        linear-gradient(90deg, rgba(6, 13, 22, 0.38) 0%, rgba(6, 13, 22, 0.1) 32%, rgba(6, 13, 22, 0.08) 72%, rgba(6, 13, 22, 0.26) 100%),
        linear-gradient(180deg, rgba(8, 18, 29, 0.14) 0%, rgba(8, 18, 29, 0.08) 28%, rgba(8, 18, 29, 0.1) 56%, rgba(8, 18, 29, 0.22) 100%);
}

body.home-page .hero-bg-fade {
    inset: auto 0 0;
    height: clamp(180px, 22vw, 320px);
    z-index: 3;
    background: linear-gradient(180deg, rgba(8, 18, 29, 0) 0%, rgba(8, 18, 29, 0.2) 42%, rgba(8, 18, 29, 0.7) 100%);
}

body.home-page .section-block,
body.home-page .hero-home-premium {
    position: relative;
    z-index: 1;
}

body.home-page .section-shell {
    position: relative;
    z-index: 1;
}

body.home-page .section-block {
    padding: 16px 0;
}

body.home-page .section-panel,
body.home-page .final-cta-panel {
    background:
        linear-gradient(180deg, rgba(10, 23, 36, 0.78) 0%, rgba(10, 24, 38, 0.62) 100%);
    border-color: rgba(126, 160, 255, 0.1);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.16);
}

body.home-page .section-panel::after {
    opacity: 0.7;
}

body.home-page .hero-home-copy,
body.home-page .hero-visual-card {
    background:
        linear-gradient(180deg, rgba(7, 18, 30, 0.86) 0%, rgba(10, 24, 38, 0.72) 100%);
    border: 1px solid rgba(126, 160, 255, 0.12);
}

body.home-page .hero-proof-stat,
body.home-page .audience-card-v3,
body.home-page .audience-callout-card,
body.home-page .proof-support-card,
body.home-page .dre-insight-card,
body.home-page .offer-card-v2--spotlight,
body.home-page .trust-metric {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(10, 23, 36, 0.28) 100%);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

body.home-page .audience-fusion-panel,
body.home-page .dre-section {
    background:
        linear-gradient(180deg, rgba(10, 23, 36, 0.78) 0%, rgba(10, 24, 38, 0.64) 100%);
}

body.home-page .hero-home-grid {
    gap: clamp(24px, 2vw, 34px);
    align-items: stretch;
}

body.home-page .hero-home-copy,
body.home-page .hero-visual-card {
    position: relative;
    z-index: 1;
    box-shadow: 0 24px 60px rgba(2, 10, 18, 0.22);
}

body.home-page .hero-visual-card {
    padding: 24px 24px 20px;
}

body.home-page .hero-visual-top {
    gap: 12px;
}

body.home-page .analyst-scene {
    min-height: 438px;
    padding: 22px;
}

body.home-page .hero-analyst-figure {
    inset: 58px auto auto 18px;
    width: min(45%, 242px);
    z-index: 1;
}

body.home-page .report-surface {
    inset: 48px 18px 36px auto;
    width: min(58%, 314px);
    z-index: 2;
}

body.home-page .hero-scene-caption {
    max-width: 42ch;
}

@keyframes heroBackgroundPanelFloat {
    0%,
    100% {
        transform: translate3d(calc(var(--hero-bg-shift-x) * var(--panel-shift-x, 14px)), calc(var(--hero-bg-shift-y) * var(--panel-shift-y, 14px)), 0);
    }

    50% {
        transform: translate3d(calc(var(--hero-bg-shift-x) * var(--panel-shift-x, 14px)), calc(var(--hero-bg-shift-y) * var(--panel-shift-y, 14px) - 10px), 0);
    }
}

@media (max-width: 1180px) {
    body.home-page .hero-bg-panel--flow {
        left: auto;
        right: 8%;
        top: 14%;
    }

    body.home-page .hero-bg-panel--dre {
        top: 44%;
        right: 5%;
    }

    body.home-page .hero-bg-panel--tax {
        left: 8%;
        top: 62%;
    }

    body.home-page .hero-bg-panel--trust {
        top: 78%;
        right: 8%;
    }
}

@media (max-width: 860px) {
    body.home-page .hero-bg-interactive {
        inset: 0;
    }

    body.home-page .hero-bg-panel {
        opacity: 0.28;
    }

    body.home-page .hero-bg-panel--flow {
        top: 14%;
        right: 4%;
        width: min(44vw, 188px);
    }

    body.home-page .hero-bg-panel--dre {
        top: 48%;
        right: 4%;
    }

    body.home-page .hero-bg-panel--tax {
        top: 72%;
        left: 4%;
        width: min(42vw, 182px);
    }

    body.home-page .hero-bg-panel--trust {
        display: none;
    }

    body.home-page .hero-visual-card {
        padding: 22px 22px 18px;
    }

    body.home-page .analyst-scene {
        min-height: 374px;
        padding: 20px;
    }

    body.home-page .hero-analyst-figure {
        inset: 58px auto auto 10px;
        width: min(41%, 208px);
    }

    body.home-page .report-surface {
        inset: 54px 14px 28px auto;
        width: min(58%, 268px);
    }
}

@media (max-width: 640px) {
    body.home-page .hero-bg-interactive {
        inset: 0;
    }

    body.home-page .hero-bg-interactive::before {
        width: 62vw;
        opacity: 0.42;
    }

    body.home-page .hero-bg-panel {
        opacity: 0.18;
        padding: 12px 14px;
    }

    body.home-page .hero-bg-panel--flow {
        top: 13%;
        right: 6%;
        width: 44vw;
    }

    body.home-page .hero-bg-panel--dre {
        top: 56%;
        right: 6%;
        width: 38vw;
    }

    body.home-page .hero-bg-panel--tax,
    body.home-page .hero-bg-panel--trust {
        display: none;
    }

    body.home-page .hero-bg-overlay {
        background:
            radial-gradient(circle at 22% 16%, rgba(4, 11, 19, 0.96) 0%, rgba(4, 11, 19, 0.88) 24%, rgba(4, 11, 19, 0.58) 40%, transparent 68%),
            linear-gradient(180deg, rgba(6, 13, 22, 0.14) 0%, rgba(6, 13, 22, 0.2) 52%, rgba(6, 13, 22, 0.56) 100%);
    }

    body.home-page .analyst-scene {
        min-height: 322px;
        padding: 18px;
    }

    body.home-page .hero-analyst-figure {
        inset: 72px auto auto 2px;
        width: 42%;
    }

    body.home-page .report-surface {
        inset: 72px 12px 24px auto;
        width: 58%;
        padding: 14px 12px 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.home-page .hero-bg-interactive::before {
        opacity: 0.4;
    }

    body.home-page .hero-bg-panel {
        animation: none;
    }
}

/* Source: assets/css/soulcont-brand.css */
/* Camada de marca SoulCont: adicionada sobre a interface existente sem alterar componentes funcionais. */
:root {
    --soul-navy: #0f2233;
    --soul-gold: #c8a86b;
    --soul-ivory: #f4f1ea;
    --color-navy-950: #071b2e;
    --color-navy-800: #0d2e4a;
    --color-cream: #f7f4ee;
    --color-gold: #c7a15a;
    --color-gold-soft: #e8d4a7;
    --color-ink: #182431;
    --color-muted: #66727e;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --container: 1200px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 3000;
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--color-gold);
    color: var(--color-navy-950);
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
    outline: 3px solid var(--color-gold-soft);
    outline-offset: 3px;
}

header .logo a.soulcont-wordmark,
.footer-brand-v2 a.soulcont-wordmark {
    display: inline-flex;
    align-items: center;
    gap: 0.08em;
    color: var(--soul-ivory);
    font-family: "Syne", "Inter", sans-serif;
    font-size: clamp(1.15rem, 2.4vw, 1.65rem);
    font-weight: 500;
    letter-spacing: 0.14em;
    line-height: 1;
    text-decoration: none;
}

header .logo a.soulcont-wordmark img.soulcont-wordmark__mark,
.footer-brand-v2 a.soulcont-wordmark img.soulcont-wordmark__mark {
    display: block;
    width: 36px !important;
    height: 44px !important;
    max-width: 36px !important;
    max-height: 44px !important;
    flex: 0 0 36px;
    margin-right: 0.18em;
    object-fit: contain;
}

.footer-brand-v2 a.soulcont-wordmark {
    margin-bottom: 16px;
}

.soulcont-wordmark strong {
    color: var(--soul-gold);
    font-weight: 800;
}

@media (max-width: 640px) {
    header .logo a.soulcont-wordmark img.soulcont-wordmark__mark {
        width: 30px !important;
        height: 38px !important;
        max-width: 30px !important;
        max-height: 38px !important;
        flex-basis: 30px;
    }
}

.soulcont-team-hero {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 16px;
    min-height: 100%;
}

.soulcont-team-hero__label {
    color: var(--soul-gold);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.soulcont-team-hero__photos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.soulcont-team-hero__person {
    margin: 0;
    position: relative;
    aspect-ratio: 0.72;
    overflow: hidden;
    border: 1px solid rgba(200, 168, 107, 0.26);
    border-radius: 18px;
    background: #122940;
}

.soulcont-team-hero__person img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 12%;
    display: block;
}

.soulcont-team-hero__person:first-child img { object-position: 50% 10%; }
.soulcont-team-hero__person:last-child img { object-position: 50% 8%; }

.soulcont-team-hero__caption {
    position: absolute;
    inset: auto 0 0;
    padding: 34px 13px 13px;
    background: linear-gradient(transparent, rgba(8, 20, 32, 0.96));
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
}

.soulcont-team-hero__caption span {
    display: block;
    margin-top: 4px;
    color: var(--soul-gold);
    font-size: 0.68rem;
    font-weight: 500;
}

.soulcont-team-hero__copy {
    margin: 0;
    color: var(--soul-ui-text-soft);
    font-size: 0.92rem;
    line-height: 1.6;
}

.hero-responsible-line {
    max-width: 530px;
    margin: 20px 0 0;
    color: var(--soul-ui-text-soft);
    font-size: 0.78rem;
    line-height: 1.55;
}

.hero-actions-v2 .btn-v2-primary {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-navy-950);
}

.hero-actions-v2 .btn-v2-secondary {
    border-color: rgba(232, 212, 167, 0.72);
    background: transparent;
    color: var(--soul-ivory);
}

.hero-proof-stat strong {
    min-height: 0;
    color: var(--soul-ivory);
    font-size: clamp(1rem, 1.45vw, 1.25rem);
    line-height: 1.35;
}

.hero-proof-stat p {
    margin-top: 7px;
}

.soulcont-faq__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.soulcont-faq__grid details {
    border: 1px solid var(--soul-ui-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.58);
    padding: 18px;
}

.soulcont-faq__grid summary {
    cursor: pointer;
    color: var(--soul-ui-navy);
    font-weight: 800;
    line-height: 1.4;
}

.soulcont-faq__grid p {
    margin: 12px 0 0;
    color: var(--soul-ui-text-soft);
    font-size: 0.93rem;
    line-height: 1.6;
}

.soulcont-team-member {
    grid-template-columns: 120px minmax(0, 1fr);
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--soul-ui-line);
}

.soulcont-team-member img {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    object-fit: cover;
}

.soulcont-feature-section {
    padding-top: 28px;
}

.soulcont-feature-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: clamp(28px, 6vw, 84px);
}



.soulcont-feature-story__image {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-navy-950);
}

.soulcont-feature-story__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.soulcont-feature-story__copy h2 {
    max-width: 18ch;
    margin: 16px 0;
    color: var(--soul-ivory);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.5vw, 3.35rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.soulcont-feature-story__copy p {
    max-width: 58ch;
    color: var(--soul-ui-text-soft);
    font-size: 1rem;
    line-height: 1.7;
}

.soulcont-feature-story__copy .text-link-v2 {
    display: inline-flex;
    margin-top: 8px;
}

@media (max-width: 860px) {
    .soulcont-faq__grid { grid-template-columns: 1fr; }
    .soulcont-feature-story,
    .soulcont-feature-story--reverse { grid-template-columns: 1fr; gap: 28px; }
    .soulcont-feature-story--reverse .soulcont-feature-story__copy { order: 2; }
    .soulcont-team-member { grid-template-columns: 1fr; text-align: center; }
    .soulcont-team-member img { margin: 0 auto; }
}

@media (max-width: 640px) {
    body { overflow-x: hidden; }

    .hero-home-copy h1 {
        font-size: clamp(2.35rem, 10.5vw, 3.1rem);
        line-height: 0.98;
    }

    .hero-actions-v2,
    .cta-actions-v2 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-actions-v2 .btn-v2,
    .cta-actions-v2 .btn-v2 {
        width: 100%;
        justify-content: center;
    }

    .hero-direct-links {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 14px;
    }

    .hero-direct-link {
        min-height: 48px;
        font-size: 0.88rem;
    }

    .soulcont-team-hero { gap: 12px; }
    .soulcont-team-hero__photos { gap: 8px; }
    .soulcont-team-hero__person { border-radius: 14px; }
    .soulcont-team-hero__caption { font-size: 0.68rem; padding: 28px 9px 9px; }
    .soulcont-team-hero__caption span { font-size: 0.61rem; }
    .soulcont-team-hero__copy { font-size: 0.87rem; }
}

/* Composição editorial da Home: fotos reais como foco, sem painel de interface. */
body.home-page .legacy-analyst-scene {
    display: none;
}

body.home-page .hero-home-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
    align-items: center;
    gap: clamp(32px, 4vw, 72px);
}

body.home-page .hero-home-copy {
    align-self: center;
    padding: 34px 0 30px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hero-team {
    position: relative;
    min-width: 0;
    padding: 20px 0 0;
}

.hero-team::before {
    content: "";
    position: absolute;
    top: 13%;
    bottom: 7%;
    left: 50%;
    width: 1px;
    background: rgba(199, 161, 90, 0.56);
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-team__eyebrow {
    position: relative;
    z-index: 3;
    margin: 0 0 14px;
    color: var(--color-gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-team__stage {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: clamp(12px, 2vw, 26px);
    padding-right: 12px;
}

.hero-team__portrait {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #0d2e4a;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.hero-team__portrait--vitor {
    margin-top: 0;
}

.hero-team__portrait--leonardo {
    margin-top: clamp(28px, 4.2vw, 58px);
}

.hero-team__portrait img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-team__portrait--vitor img { object-position: 50% 8%; }
.hero-team__portrait--leonardo img { object-position: 50% 6%; }

.hero-team__portrait figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    gap: 3px;
    padding: 44px 14px 14px;
    background: linear-gradient(transparent, rgba(7, 27, 46, 0.96) 64%);
    color: var(--color-cream);
}

.hero-team__portrait figcaption strong {
    font-size: clamp(0.72rem, 1.15vw, 0.92rem);
    line-height: 1.25;
}

.hero-team__portrait figcaption span {
    color: var(--color-gold-soft);
    font-size: clamp(0.62rem, 0.95vw, 0.74rem);
    font-weight: 600;
    line-height: 1.25;
}

@media (max-width: 1180px) {
    body.home-page .hero-home-grid {
        grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
        gap: clamp(24px, 3vw, 42px);
    }
}

@media (max-width: 860px) {
    body.home-page .hero-home-grid {
        grid-template-columns: 1fr;
    }

    .hero-team {
        width: min(100%, 650px);
        margin: 0 auto;
        padding-top: 8px;
    }

    .hero-team__stage {
        padding-right: 18px;
    }
}

@media (max-width: 640px) {
    .hero-team {
        width: min(100%, 430px);
    }

    .hero-team::before {
        top: 8%;
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-team__stage {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-right: 10px;
    }

    .hero-team__portrait {
        width: min(100%, 340px);
        margin-right: auto;
        margin-left: auto;
    }

    .hero-team__portrait--leonardo {
        margin-top: 0;
    }

    .hero-team__portrait figcaption {
        padding: 58px 16px 16px;
    }

    .hero-team__portrait figcaption strong { font-size: 0.92rem; }
    .hero-team__portrait figcaption span { font-size: 0.75rem; }
}

/* Ajuste fiel à maquete: o hero é uma composição aberta, não um dashboard. */
body.home-page .hero-bg-interactive {
    display: none;
}

body.home-page .hero-home-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(560px, 1.04fr);
    align-items: center;
    gap: clamp(28px, 3.4vw, 62px);
}

body.home-page .hero-home-copy {
    padding: 76px 0 72px;
    background: none !important;
    border: 0 !important;
    border-radius: 0;
    box-shadow: none !important;
}

body.home-page .hero-home-copy h1 {
    max-width: 11.6ch;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3.15rem, 5.2vw, 5.1rem);
    font-weight: 700;
    line-height: 0.96;
}

.hero-team {
    padding: 0;
    opacity: 1 !important;
    transform: none !important;
}

@media (min-width: 981px) {
    .hero-team {
        transform: translateX(clamp(20px, 3vw, 44px)) !important;
    }
}

.hero-team::before {
    display: none;
}

.hero-team__eyebrow {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.hero-team__stage {
    display: block;
    min-height: clamp(490px, 39vw, 620px);
    padding: 0;
}

.hero-team__portrait {
    position: absolute;
    width: clamp(230px, 18.75vw, 360px);
    overflow: visible;
    aspect-ratio: auto;
    background: transparent;
    box-shadow: none;
}

.hero-team__portrait--vitor {
    top: 0;
    left: 0;
}

.hero-team__portrait--leonardo {
    top: clamp(38px, 3.5vw, 64px);
    left: clamp(248px, 20vw, 385px);
    margin-top: 0;
}

.hero-team__portrait img {
    aspect-ratio: 3 / 4;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.hero-team__portrait figcaption {
    position: static;
    display: grid;
    gap: 3px;
    padding: 11px 0 0;
    background: none;
    color: var(--color-cream);
}

.hero-team__portrait figcaption strong {
    font-size: clamp(0.82rem, 1.15vw, 1rem);
}

.hero-team__portrait figcaption span {
    color: var(--color-gold);
    font-size: clamp(0.68rem, 0.92vw, 0.78rem);
}

body.home-page .hero-proof-band {
    gap: 0;
    margin-top: 0;
    border-top: 1px solid rgba(199, 161, 90, 0.32);
    border-bottom: 1px solid rgba(199, 161, 90, 0.22);
}

body.home-page .hero-proof-stat {
    padding: 22px 24px;
    border: 0;
    border-right: 1px solid rgba(199, 161, 90, 0.2);
    border-radius: 0;
    background: none;
    box-shadow: none;
}

body.home-page .hero-proof-stat:last-child {
    border-right: 0;
}

@media (max-width: 1180px) {
    body.home-page .hero-home-grid {
        grid-template-columns: minmax(0, 0.84fr) minmax(500px, 1.16fr);
    }
}

@media (max-width: 980px) {
    body.home-page .hero-home-grid {
        grid-template-columns: 1fr;
    }

    body.home-page .hero-home-copy {
        padding: 58px 0 34px;
    }

    .hero-team {
        width: min(100%, 680px);
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    body.home-page .hero-home-copy {
        padding: 42px 0 30px;
    }

    body.home-page .hero-home-copy h1 {
        max-width: 10.8ch;
        font-size: clamp(2.65rem, 12vw, 3.35rem);
    }

    .hero-team {
        width: 100%;
    }

    .hero-team__stage {
        display: grid;
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-team__portrait,
    .hero-team__portrait--vitor,
    .hero-team__portrait--leonardo {
        position: relative;
        top: auto;
        left: auto;
        width: min(100%, 320px);
        margin: 0 auto;
    }

    .hero-team__portrait figcaption {
        padding-top: 10px;
    }

    body.home-page .hero-proof-band {
        grid-template-columns: 1fr;
        margin-top: 34px;
    }

    body.home-page .hero-proof-stat {
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(199, 161, 90, 0.18);
    }

    body.home-page .hero-proof-stat:last-child {
        border-bottom: 0;
    }
}

/* Refinamento comercial: hierarquia mais serena, contraste e movimento discreto. */
:root {
    --soul-transition: 220ms cubic-bezier(.2, .7, .25, 1);
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.section-heading h2,
.page-hero h1,
.detail-hero h1,
.final-cta-panel h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.018em;
}

.section-heading p,
.page-hero p,
.detail-hero p,
.final-cta-panel p {
    max-width: 66ch;
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.7;
}

header {
    min-height: 76px;
    padding: 10px 24px;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

header.scrolled {
    min-height: 68px;
    padding: 8px 22px;
    border-color: rgba(199, 161, 90, 0.3);
}

.header-cta {
    width: auto !important;
    min-height: 42px;
    height: 42px !important;
    padding: 0 16px;
    border-radius: 10px !important;
    border-color: var(--color-gold) !important;
    background: var(--color-gold) !important;
    color: var(--color-navy-950) !important;
    font-family: "Inter", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
    background: var(--color-gold-soft) !important;
    transform: translateY(-1px);
}

body.home-page .social-icons > a:not(.header-cta) {
    display: none;
}

.btn-v2 {
    min-height: 50px;
    border-radius: 12px;
    font-family: "Inter", sans-serif;
    letter-spacing: -0.01em;
}

.btn-v2-primary,
.btn-v2-whatsapp {
    color: var(--color-navy-950);
    background: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: 0 14px 30px rgba(199, 161, 90, 0.2);
}

.btn-v2-primary:hover,
.btn-v2-whatsapp:hover {
    background: var(--color-gold-soft);
    border-color: var(--color-gold-soft);
    color: var(--color-navy-950);
}

.btn-v2-secondary {
    border-color: rgba(247, 244, 238, 0.3);
    background: transparent;
}

.btn-v2:focus-visible,
.header-cta:focus-visible,
.text-link-v2:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--color-gold-soft);
    outline-offset: 3px;
}

.text-link-v2 {
    text-underline-offset: 5px;
    text-decoration-color: rgba(199, 161, 90, 0.45);
    transition: color var(--soul-transition), text-decoration-color var(--soul-transition);
}

.text-link-v2:hover {
    color: var(--color-gold-soft);
    text-decoration-color: currentColor;
}

.offer-footer .text-link-v2,
.service-anchor-row a,
.contact-card-v2 .text-link-v2 {
    min-height: 44px;
    padding: 0 10px;
}

.whatsapp-float {
    right: max(18px, calc(12px + env(safe-area-inset-right)));
    bottom: max(20px, calc(12px + env(safe-area-inset-bottom)));
}

body.has-cookie-banner .whatsapp-float {
    visibility: hidden;
}

body.home-page .audience-fusion-panel,
body.home-page .services-home-panel {
    border-radius: 22px;
}

body.home-page .audience-track-bar,
body.home-page .proof-support-bar {
    opacity: 0.62;
}

.soul-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 560ms ease, transform 560ms cubic-bezier(.2, .7, .25, 1);
    transition-delay: var(--soul-reveal-delay, 0ms);
}

.soul-reveal.is-visible {
    opacity: 1;
    transform: none;
}

details > summary {
    transition: color var(--soul-transition);
}

details[open] > summary {
    color: var(--color-gold-soft);
}

@media (max-width: 980px) {
    header {
        min-height: 68px;
        padding: 9px 18px;
    }

    .header-cta {
        display: none !important;
    }

    body.home-page .hero-home-copy {
        padding-bottom: 22px;
    }

    body.home-page .hero-responsible-line {
        margin-top: 16px;
    }
}

@media (max-width: 640px) {
    body.home-page .hero-home-copy {
        padding-top: 32px;
        padding-bottom: 18px;
    }

    body.home-page .hero-eyebrow-stack .eyebrow-label {
        min-height: 32px;
        padding: 0 11px;
        font-size: 0.65rem;
    }

    body.home-page .hero-home-copy h1 {
        font-size: clamp(2.35rem, 10.9vw, 3.02rem);
    }

    body.home-page .hero-home-copy p {
        font-size: 0.98rem;
        line-height: 1.58;
    }

    body.home-page .hero-actions-v2 {
        margin-top: 18px;
    }

    .whatsapp-float {
        right: max(14px, calc(10px + env(safe-area-inset-right)));
        bottom: max(24px, calc(14px + env(safe-area-inset-bottom)));
    }

    .soul-reveal {
        transform: none;
        transition-duration: 260ms;
    }
}

@media (prefers-reduced-motion: reduce) {
    .soul-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
    }
}

/* Experiencia mobile: leitura, toque e carregamento priorizados na pagina inicial. */
@media (max-width: 640px) {
    body.home-page {
        font-size: 16px;
    }

    body.home-page header,
    body.home-page header.scrolled {
        min-height: 68px !important;
        padding: 8px 12px !important;
        background: #0f2233 !important;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
    }

    body.home-page header .logo a.soulcont-wordmark {
        min-height: 44px;
        font-size: 1.08rem;
        letter-spacing: 0.11em;
    }

    body.home-page .site-main-v2 {
        padding-top: 72px;
    }

    body.home-page .section-block {
        padding: 12px 0;
    }

    body.home-page .section-shell {
        width: min(calc(100% - 20px), var(--soul-ui-max));
    }

    body.home-page .section-panel,
    body.home-page .final-cta-panel {
        padding: 18px;
        border-radius: 18px;
    }

    body.home-page .section-heading {
        margin-bottom: 20px;
    }

    body.home-page .section-heading h2,
    body.home-page .final-cta-panel h2 {
        font-size: clamp(2rem, 9.5vw, 2.55rem);
        line-height: 1.02;
    }

    body.home-page .section-heading p,
    body.home-page .final-cta-panel p {
        font-size: 1rem;
        line-height: 1.62;
    }

    body.home-page .hero-home-copy {
        padding-top: 20px;
        padding-bottom: 12px;
    }

    body.home-page .hero-eyebrow-stack .eyebrow-label {
        min-height: 36px;
        padding: 7px 11px;
        font-size: 0.75rem;
        line-height: 1.25;
    }

    body.home-page .hero-home-copy h1 {
        max-width: 10ch;
        margin-top: 16px;
        font-size: clamp(2.65rem, 12vw, 3.15rem);
        line-height: 0.94;
    }

    body.home-page .hero-home-copy p {
        font-size: 1rem;
        line-height: 1.55;
    }

    body.home-page .hero-home-copy > p:not(.hero-responsible-line) {
        text-align: justify;
        text-align-last: left;
        text-justify: inter-word;
        hyphens: auto;
    }

    body.home-page .hero-actions-v2 {
        margin-top: 16px;
    }

    body.home-page .hero-responsible-line {
        margin-top: 14px;
        font-size: 0.78rem;
        line-height: 1.5;
    }

    body.home-page .hero-team__stage {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    body.home-page .hero-team__portrait,
    body.home-page .hero-team__portrait--vitor,
    body.home-page .hero-team__portrait--leonardo {
        width: 100%;
        margin: 0;
    }

    body.home-page .hero-team__portrait img {
        border-radius: 12px;
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
    }

    body.home-page .hero-team__portrait figcaption {
        gap: 2px;
        padding-top: 8px;
    }

    body.home-page .hero-team__portrait figcaption strong {
        font-size: 0.78rem;
        line-height: 1.25;
    }

    body.home-page .hero-team__portrait figcaption span {
        font-size: 0.68rem;
        line-height: 1.3;
    }

    body.home-page .hero-proof-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        margin-top: 24px;
    }

    body.home-page .hero-proof-stat,
    body.home-page .hero-proof-stat:last-child {
        padding: 14px 10px;
        border-right: 0;
        border-bottom: 1px solid rgba(199, 161, 90, 0.18);
    }

    body.home-page .hero-proof-stat:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    body.home-page .hero-proof-stat strong {
        font-size: 0.92rem;
    }

    body.home-page .hero-proof-stat p {
        font-size: 0.78rem;
        line-height: 1.45;
    }

    body.home-page .audience-callout-card,
    body.home-page .proof-support-card,
    body.home-page .dre-insight-card {
        padding: 18px;
        border-radius: 18px;
    }

    body.home-page .audience-callout-card h3 {
        font-size: 1.42rem;
    }

    body.home-page .audience-track-meta {
        display: grid;
        gap: 5px;
    }

    body.home-page .audience-track-meta span,
    body.home-page .audience-track-meta strong {
        font-size: 0.82rem;
        text-align: left;
    }

    body.home-page .audience-grid,
    body.home-page .services-home-grid,
    body.home-page .process-grid,
    body.home-page .trust-metric-row {
        display: grid;
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(270px, 86%);
        gap: 12px;
        margin-right: -18px;
        padding: 2px 18px 10px 2px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-padding-inline: 2px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    body.home-page .audience-grid::-webkit-scrollbar,
    body.home-page .services-home-grid::-webkit-scrollbar,
    body.home-page .process-grid::-webkit-scrollbar,
    body.home-page .trust-metric-row::-webkit-scrollbar {
        display: none;
    }

    body.home-page .audience-grid > *,
    body.home-page .services-home-grid > *,
    body.home-page .process-grid > *,
    body.home-page .trust-metric-row > * {
        min-width: 0;
        scroll-snap-align: start;
    }

    body.home-page .audience-card-v3,
    body.home-page .offer-card-v2--spotlight,
    body.home-page .process-card {
        padding: 18px;
        border-radius: 18px;
    }

    body.home-page .audience-card-v3 {
        min-height: 330px;
    }

    body.home-page .offer-card-v2--spotlight {
        min-height: 360px;
    }

    body.home-page .process-card {
        min-height: 260px;
    }

    body.home-page .soulcont-feature-story {
        gap: 20px;
    }

    body.home-page .soulcont-feature-story__image {
        border-radius: 18px;
    }

    body.home-page .soulcont-feature-story__copy h2 {
        margin: 12px 0;
        font-size: clamp(2rem, 9.5vw, 2.55rem);
    }

    body.home-page .dre-row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px 12px;
        padding: 13px 14px;
        border-radius: 14px;
    }

    body.home-page .dre-bar-track {
        grid-column: 1 / -1;
    }

    body.home-page .soulcont-team-member,
    body.home-page .responsible-card .soulcont-team-member {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 12px;
        text-align: left;
    }

    body.home-page .soulcont-team-member img,
    body.home-page .responsible-card .soulcont-team-member img {
        width: 72px;
        height: 88px;
        margin: 0;
        border-radius: 14px;
    }

    body.home-page .soulcont-team-member p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    body.home-page .reviews-heading-row {
        gap: 16px;
        margin-bottom: 20px;
    }

    body.home-page .google-rating-summary {
        display: flex;
        width: 100%;
        max-width: none;
        flex-wrap: wrap;
        align-items: center;
        gap: 7px 12px;
        padding: 14px 16px;
        border-radius: 16px;
    }

    body.home-page .google-rating-summary__brand {
        flex-basis: 100%;
    }

    body.home-page .google-rating-summary__score {
        font-size: 2rem;
    }

    body.home-page .reviews-carousel__track {
        grid-auto-columns: 92%;
        gap: 12px;
    }

    body.home-page .review-card {
        min-height: 290px;
        padding: 18px;
        border-radius: 18px;
    }

    body.home-page .reviews-google-link,
    body.home-page .text-link-v2,
    body.home-page .footer-group-v2 a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    body.home-page .soulcont-faq__grid details {
        padding: 16px;
    }

    body.home-page .whatsapp-float {
        width: 52px !important;
        height: 52px !important;
    }

    body.home-page .audience-track-bar::after,
    body.home-page .proof-support-bar::after,
    body.home-page .mini-tax-bar::after,
    body.home-page .mini-spark-bar::after,
    body.home-page .audience-card-v3 .card-icon i,
    body.home-page .whatsapp-float {
        animation: none !important;
    }

    body.home-page .mini-spark-chart polyline {
        animation: none !important;
        stroke-dashoffset: 0;
    }
}

@media (max-width: 360px) {
    body.home-page header .logo a.soulcont-wordmark {
        font-size: 1rem;
        letter-spacing: 0.08em;
    }

    body.home-page .hero-home-copy h1 {
        font-size: 2.55rem;
    }

    body.home-page .hero-team__portrait figcaption strong {
        font-size: 0.72rem;
    }

    body.home-page .hero-team__portrait figcaption span {
        font-size: 0.64rem;
    }

    body.home-page .audience-grid,
    body.home-page .services-home-grid,
    body.home-page .process-grid,
    body.home-page .trust-metric-row {
        grid-auto-columns: minmax(258px, 90%);
    }
}
