@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&display=swap');

:root {
    --cor-fundo: #0F0F0F;
    --cor-texto: #FFFFFF;
    --cor-destaque: #C5A059;
    --fonte-principal: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    font-family: var(--fonte-principal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

/* =============================================
   CURSOR CUSTOMIZADO
   ============================================= */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--cor-destaque);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor-outline {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(197, 160, 89, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.18s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

@media (hover: none) {
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* =============================================
   CABEÇALHO (original intocado)
   ============================================= */
.cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(15, 15, 15, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.5s ease;
}

.cabecalho-escondido {
    transform: translateY(-100%);
}

.logo img {
    max-height: 50px;
    width: auto;
}

.menu a {
    color: var(--cor-texto);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: var(--cor-destaque);
}

.btn-menu {
    border: 2px solid var(--cor-destaque);
    padding: 10px 20px;
    border-radius: 5px;
}

/* =============================================
   NOVA HERO SECTION
   (substitui as antigas regras de .hero-section
    e .hero-conteudo — usando variáveis do site)
   ============================================= */
.hero-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 120px 5% 60px;
    position: relative;
    overflow: hidden;
    background: var(--cor-fundo);
}

/* Malha dourada de fundo */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(197, 160, 89, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Bolas de luz (orbs) */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    animation: orb-float 10s ease-in-out infinite alternate;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.07) 0%, transparent 70%);
    bottom: 0;
    left: -50px;
    animation-delay: -5s;
}

@keyframes orb-float {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(30px, -30px) scale(1.05); }
}

/* Coluna de texto */
.hero-conteudo {
    position: relative;
    z-index: 1;
    animation: hero-entrada 1s cubic-bezier(0.16, 1, 0.3, 1) both;
    text-align: left;
}

@keyframes hero-entrada {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Badge / pílula de destaque */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: var(--cor-destaque);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--cor-destaque);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

/* Título principal */
.hero-conteudo h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-conteudo h1 em {
    font-style: normal;
    display: block;
    color: var(--cor-destaque);
}

.destaque-dourado {
    color: var(--cor-destaque);
}

/* Subtítulo */
.hero-conteudo p {
    font-size: 1.1rem;
    color: #CCCCCC;
    margin-bottom: 44px;
    max-width: 500px;
    line-height: 1.7;
}

/* Botões da hero */
.hero-acoes {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-principal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--cor-destaque);
    color: var(--cor-fundo);
    padding: 15px 32px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-principal:hover {
    transform: translateY(-3px) scale(1.02);
    background-color: #d8b46a;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.4);
}

.btn-principal svg {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.btn-principal:hover svg {
    transform: translateX(4px);
}

.btn-secundario {
    color: #CCCCCC;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
    font-size: 1rem;
}

.btn-secundario:hover {
    color: var(--cor-texto);
    border-color: var(--cor-texto);
}

/* Coluna visual (foto + cards flutuantes) */
.hero-visual {
    position: relative;
    z-index: 1;
    animation: hero-visual-entrada 1.2s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes hero-visual-entrada {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

.hero-imagem {
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    position: relative;
}

.hero-imagem::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 8s ease;
}

.hero-imagem:hover img {
    transform: scale(1.04);
}

/* Cards flutuantes sobre a foto */
.hero-card-flutuante {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(20, 20, 20, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-card-flutuante strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cor-texto);
}

.hero-card-flutuante span {
    font-size: 0.8rem;
    color: #AAAAAA;
}

.card-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.card-1 {
    bottom: 30px;
    left: -30px;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 20px;
    right: -20px;
    animation: float 6s 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

/* Seta de scroll */
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.3);
    z-index: 2;
    text-decoration: none;
    transition: color 0.2s ease;
    animation: bounce 3s ease-in-out infinite;
}

.hero-scroll-hint:hover {
    color: var(--cor-destaque);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   ESTATÍSTICAS (Original + Imagem Grande e Alinhada)
   ============================================= */
.secao-clara {
    background-color: #F9F9F9;
    color: #333333;
    padding: 100px 5%;
}

.container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    /* ALTERADO: Alinhamento vertical para o topo.
       Isso aterra o texto e as cartas, permitindo que a imagem seja
       grande abaixo deles sem fazer o texto "flutuar". */
    align-items: flex-start; 
}

.texto-chamada h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--cor-fundo);
}

.texto-chamada p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px; /* Separator */
}

/* --- REGRAS ADICIONADAS APENAS PARA A IMAGEM --- */
.imagem-estatistica {
    width: 100%;
    /* REMOVIDO: max-width: 450px;
       Agora a imagem preenche toda a largura da coluna. */
    
    /* ALTERADO: height de 250px para 550px (tamanho grande desejado).
       Isso torna a imagem muito maior e dominante na coluna. */
    height: 550px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.placeholder-foto-estatistica {
    background-image: url('https://images.unsplash.com/photo-1589998059171-988d887df646?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}
/* ----------------------------------------------- */

.grid-estatisticas {
    display: grid;
    gap: 20px;
}

.card-stat {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--cor-destaque);
    transition: transform 0.3s ease;
}

.card-stat:hover {
    transform: translateY(-5px);
}

.grafico-circular {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: conic-gradient(var(--cor-destaque) var(--porcentagem), #333333 0);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.grafico-centro {
    width: 85px;
    height: 85px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #333333;
}

.card-stat h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.card-stat p {
    font-size: 0.95rem;
    color: #666;
}

/* =============================================
   SERVIÇOS — Redesign Premium
   ============================================= */
.secao-escura {
    background-color: #080808;
    color: var(--cor-texto);
    padding: 130px 5%;
    position: relative;
    overflow: hidden;
}

/* Linha decorativa sutil no topo */
.secao-escura::before {
    content: '';
    position: absolute;
    top: 0; left: 5%; right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197,160,89,0.4), transparent);
}

.container-servicos {
    max-width: 1240px;
    margin: 0 auto;
}

.titulo-secao {
    text-align: center;
    margin-bottom: 80px;
}

/* Label acima do título */
.titulo-secao .label-secao {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cor-destaque);
    margin-bottom: 18px;
    position: relative;
    padding: 0 20px;
}

.titulo-secao .label-secao::before,
.titulo-secao .label-secao::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px; height: 1px;
    background: var(--cor-destaque);
    opacity: 0.5;
}
.titulo-secao .label-secao::before { right: 100%; margin-right: -20px; }
.titulo-secao .label-secao::after  { left:  100%; margin-left:  -20px; }

.titulo-secao h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.titulo-secao p {
    color: #888;
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grade 3 colunas */
.grid-servicos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Card base */
.card-servico {
    background-color: #111111;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    cursor: default;
    position: relative;
}

/* Brilho dourado no hover — surge do topo */
.card-servico::after {
    content: '';
    position: absolute;
    top: -1px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cor-destaque), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-servico:hover {
    transform: translateY(-8px);
    border-color: rgba(197,160,89,0.25);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5),
                0 0 0 1px rgba(197,160,89,0.1);
}

.card-servico:hover::after {
    opacity: 1;
}

/* Imagem com zoom suave */
.imagem-servico {
    width: 100%;
    height: 200px;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.card-servico:hover .imagem-servico {
    transform: scale(1.04);
}

/* Overlay gradiente sobre a imagem */
.imagem-servico::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(17,17,17,0.85) 100%);
}

/* Corpo do card */
.card-corpo {
    padding: 28px 28px 32px;
}

.card-servico h3 {
    color: var(--cor-destaque);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Linha decorativa ao lado do título do card */
.card-servico h3::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(197,160,89,0.2);
}

.card-servico ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-servico ul li {
    font-size: 0.9rem;
    color: #999;
    position: relative;
    padding-left: 18px;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.card-servico:hover ul li {
    color: #BBBBBB;
}

.card-servico ul li::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--cor-destaque);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
    opacity: 0.7;
}

/* Imagens dos serviços */
.placeholder-psicologo  { background-image: url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80'); background-size: cover; background-position: center; }
.placeholder-contador   { background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80'); background-size: cover; background-position: center; }
.placeholder-professor  { background-image: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80'); background-size: cover; background-position: center; }
.placeholder-personal   { background-image: url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80'); background-size: cover; background-position: center; }
.placeholder-empresario { background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80'); background-size: cover; background-position: center; }
.placeholder-restaurante{ background-image: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80'); background-size: cover; background-position: center; }

/* =============================================
   MÉTODO — Design Nível Apple
   ============================================= */
.secao-clara {
    background-color: #F5F4F1;
    color: #111;
    padding: 130px 5%;
    position: relative;
}

.secao-clara::before {
    content: '';
    position: absolute;
    top: 0; left: 5%; right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197,160,89,0.3), transparent);
}

.container-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    max-width: 1240px;
    margin: 0 auto;
    align-items: start;
}

/* Coluna esquerda do método */
.metodo-info {
    position: sticky;
    top: 100px;
}

.metodo-info .label-metodo {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #A88040;
    margin-bottom: 16px;
}

.metodo-info h2 {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    line-height: 0.95;
    margin-bottom: 24px;
    color: #0A0A0A;
    font-weight: 800;
    letter-spacing: -2px;
}

.destaque-escuro {
    color: #0A0A0A;
    font-weight: 800;
}

.tag-cliente {
    display: inline-block;
    background-color: var(--cor-destaque);
    color: #0A0A0A;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 4px;
    margin-bottom: 36px;
}

/* Imagem do método — mais elegante */
.imagem-metodo {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.imagem-metodo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
    pointer-events: none;
}

.placeholder-metodo {
    width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}

.imagem-metodo:hover .placeholder-metodo {
    transform: scale(1.04);
}

/* Lista de passos — estilo linha do tempo */
.lista-passos {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 12px;
}

.passo-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    position: relative;
    transition: background 0.3s ease;
    cursor: default;
}

.passo-item:first-child {
    padding-top: 0;
}

.passo-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Indicador de hover lateral */
.passo-item::before {
    content: '';
    position: absolute;
    left: -5%;
    top: 0; bottom: 0;
    width: 3px;
    background: var(--cor-destaque);
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transform: scaleY(0);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.passo-item:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

.passo-numero {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--cor-destaque);
    line-height: 1;
    letter-spacing: -2px;
    opacity: 0.9;
    margin-right: 0;
    align-self: flex-start;
    padding-top: 2px;
}

.passo-texto h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #111;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.passo-texto p {
    font-size: 0.92rem;
    color: #777;
    line-height: 1.7;
}

/* Texto do passo se torna mais escuro no hover */
.passo-item:hover .passo-texto h3 { color: #000; }
.passo-item:hover .passo-texto p  { color: #555; }

/* =============================================
   RODAPÉ / CONTATO — Redesign Premium Dark
   ============================================= */
.rodape {
    background-color: #060606;
    color: var(--cor-texto);
    padding: 0;
    border-top: none;
    position: relative;
}

/* Seção CTA + formulário */
.container-rodape {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    padding: 100px 5% 80px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Info do rodapé */
.rodape-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rodape-info .label-rodape {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cor-destaque);
    margin-bottom: 20px;
}

.rodape-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #FFFFFF;
}

.rodape-info p {
    color: #666;
    margin-bottom: 40px;
    font-size: 1rem;
    max-width: 420px;
    line-height: 1.75;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #25D366;
    color: #FFFFFF;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 8px;
    width: fit-content;
    transition: transform 0.3s ease,
                background-color 0.3s ease,
                box-shadow 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-whatsapp svg {
    width: 20px; height: 20px;
    flex-shrink: 0;
}

.btn-whatsapp:hover {
    background-color: #1EBE55;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(37,211,102,0.3);
}

/* ---- Formulário Premium ---- */
.formulario-contato {
    background: #0E0E0E;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 44px;
    position: relative;
    overflow: hidden;
}

/* Brilho dourado no canto superior do formulário */
.formulario-contato::before {
    content: '';
    position: absolute;
    top: -1px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cor-destaque), transparent);
}

.formulario-contato h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.formulario-contato .form-subtitulo {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Inputs dark e elegantes */
.formulario-contato form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-linha {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-campo {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-campo label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #555;
}

.formulario-contato input,
.formulario-contato textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.08);
    background-color: rgba(255,255,255,0.04);
    color: #FFFFFF;
    font-family: var(--fonte-principal);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.formulario-contato input::placeholder,
.formulario-contato textarea::placeholder {
    color: #444;
}

.formulario-contato input:focus,
.formulario-contato textarea:focus {
    border-color: rgba(197,160,89,0.6);
    background-color: rgba(197,160,89,0.04);
}

.formulario-contato textarea {
    resize: none;
    min-height: 110px;
    line-height: 1.6;
}

.btn-enviar-form {
    background: linear-gradient(135deg, var(--cor-destaque) 0%, #d8b46a 100%);
    color: #0A0A0A;
    padding: 16px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: var(--fonte-principal);
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                filter 0.3s ease;
}

.btn-enviar-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(197,160,89,0.35);
    filter: brightness(1.06);
}

/* Linha de meta-info abaixo do botão */
.form-meta {
    font-size: 0.78rem;
    color: #444;
    text-align: center;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-meta svg {
    opacity: 0.4;
}

/* ---- Rodapé inferior (links + direitos) ---- */
.rodape-inferior {
    max-width: 1240px;
    margin: 0 auto;
    padding: 48px 5%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}

.rodape-links-col {
    display: flex;
    gap: 60px;
}

.coluna-links h3 {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cor-destaque);
    margin-bottom: 14px;
}

.coluna-links p,
.coluna-links a {
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.coluna-links a:hover {
    color: var(--cor-destaque);
}

.rodape-direitos {
    text-align: right;
    border-top: none;
    padding-top: 0;
    color: #333;
    font-size: 0.82rem;
    line-height: 1.6;
}

.rodape-links {
    display: flex;
    justify-content: space-around;
}

/* =============================================
   ANIMAÇÕES DE SCROLL (original)
   ============================================= */
.escondido {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.mostrar {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* =============================================
   MENU TOGGLE (original)
   ============================================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1000;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: var(--cor-texto);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* =============================================
   RESPONSIVIDADE MOBILE
   ============================================= */
@media (max-width: 768px) {

    /* --- Nova Hero no mobile --- */
    .hero-section {
        grid-template-columns: 1fr;
        padding: 120px 5% 80px;
        min-height: auto;
    }

    .hero-visual {
        display: none; /* esconde a foto complexa para focar no texto */
    }

    .hero-conteudo h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-acoes {
        flex-direction: column;
        align-items: center;
    }

    .hero-conteudo p,
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .btn-principal {
        width: 100%;
        justify-content: center;
    }

    /* --- Serviços mobile --- */
    .grid-servicos {
        grid-template-columns: 1fr;
    }

    /* --- Método mobile --- */
    .container-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .metodo-info {
        position: static;
    }

    .metodo-info h2 {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .passo-item::before { left: 0; }
    .passo-item { text-align: left; }

    /* --- Rodapé mobile --- */
    .container-rodape {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 70px 5% 60px;
    }

    .rodape-inferior {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 5%;
    }

    .rodape-links-col {
        flex-wrap: wrap;
        gap: 32px;
    }

    .rodape-direitos { text-align: left; }

    .formulario-contato {
        padding: 30px 24px;
    }

    .form-linha {
        grid-template-columns: 1fr;
    }

    .rodape-info p { max-width: 100%; }

    /* --- Menu lateral --- */
    .menu-toggle {
        display: flex;
    }

    .menu {
        position: fixed;
        right: -100%;
        top: 0;
        display: flex;
        flex-direction: column;
        gap: 30px;
        background-color: rgba(10, 10, 10, 0.98);
        width: 70%;
        height: 100vh;
        text-align: center;
        padding-top: 100px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        backdrop-filter: blur(10px);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .menu.ativo {
        right: 0;
    }

    .menu a {
        margin: 0;
        font-size: 1.2rem;
        display: block;
    }

    .btn-menu {
        display: inline-block;
        margin-top: 20px;
    }

    .menu-toggle.ativo .bar:nth-child(1) { transform: translateY(9px)  rotate(45deg); }
    .menu-toggle.ativo .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.ativo .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}