/* =========================================
   VARIÁVEIS GLOBAIS E PALETA DE CORES
   ========================================= */
/* Substitua a sua seção :root atual por esta: */
:root {
    --bg-offwhite: #DFDBD2; /* Creme claro extraído da imagem */
    --bg-light: #EAE7E1; /* Tom mais claro para seções secundárias */
    --bg-secondary: #D7D2C8; /* Tom sutilmente mais escuro para a navbar */
    --text-dark: #1A1A1A;   /* Preto extraído da imagem */
    --text-muted: #4A4A4A;  /* Cinza escuro para textos de apoio */
    --brand-orange: #AF896B; /* Marrom/Caramelo extraído da imagem */
    --brand-orange-hover: #8F6D53; /* Tom um pouco mais escuro para cliques e hovers */
    --border-light: #CFCAC0; /* Borda ajustada para combinar com o fundo */
    
    --font-title: 'Playfair Display', serif;
    --font-text: 'Inter', sans-serif;
}

/* =========================================
   RESET BÁSICO E CONFIGURAÇÕES GERAIS
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Rolagem suave ao clicar nos links do menu */
}

body {
    background-color: var(--bg-offwhite);
    color: var(--text-dark);
    font-family: var(--font-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================
   TIPOGRAFIA E BOTÕES GERAIS
   ========================================= */
h1, h2, h3 {
    font-family: var(--font-title);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.btn-primary {
    display: inline-block;
    background-color: var(--brand-orange);
    color: #FFFFFF;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 32px;
}

.btn-primary:hover {
    background-color: var(--brand-orange-hover);
    transform: translateY(-2px);
}

/* =========================================
   HEADER E NAVBAR
   ========================================= */
header {
    background-color: var(--text-dark);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between; /* Força a logo para a esquerda e o menu para a direita */
    align-items: center;
    width: 100%;       /* Garante que o menu use toda a largura disponível */
    max-width: 1200px; /* Limita o alinhamento com o restante do conteúdo do site */
    margin: 0 auto;    /* Centraliza o bloco na tela */
    padding: 0 24px;   /* Cria o espaçamento de segurança nas duas pontas */
}

/* =========================================
   ATUALIZAÇÃO DA LOGO
   ========================================= */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--bg-offwhite); /* Texto ao lado da logo (se houver) fica creme */
}

.logo-img {
    height: 95px; /* Definimos um tamanho real excelente para leitura */
    width: auto;
    object-fit: contain;
    margin-top: -5px; 
    display: block; 
}

/* =========================================
   ANIMAÇÕES DE SCROLL
   ========================================= */
.hidden-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform; /* Otimiza a performance da animação */
}

.show-scroll {
    opacity: 1;
    transform: translateY(0);
}

/* Opcional: Atraso na animação para itens em sequência (ex: cards lado a lado) */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* =========================================
   AJUSTES NO MENU (NAVBAR) - ESTILO EDITORIAL
   ========================================= */
.nav-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: flex;
    align-items: center;
}

/* Linha divisória vertical entre os itens */
.nav-links li:not(:last-child)::after {
    content: "";
    display: block;
    width: 1px;
    height: 14px;
    background-color: #4A4A4A;
    margin: 0 16px;
}

/* Estilo base do link */
.nav-links a {
    position: relative; 
    text-decoration: none !important;
    transition: color 0.3s ease;
    color: var(--bg-offwhite); /* Trazendo os links de volta à vida! */
    font-weight: 400; /* Deixa o texto inativo um pouco mais fino que o ativo */
}

/* A única linha base (começa com largura 0) */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--brand-orange);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Efeito Hover (passar o mouse) */
.nav-links a:hover {
    color: var(--brand-orange);
    background-color: transparent;
}

.nav-links a:hover::after {
    width: 100%; /* Expande a linha ao passar o mouse */
}

/* Estado Ativo (controlado pelo JS) */
.nav-links a.active {
    color: var(--brand-orange) !important;
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%; /* Trava a linha expandida quando a seção estiver visível */
}
.btn-contato:hover {
    background-color: transparent !important;
}


/* =========================================
   DOBRA 1: HERO SECTION
   ========================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 12px; /* Espaço entre a logo e o nome */
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.logo-img {
    height: 120px; /* Aumentei bastante! Teste valores entre 90px e 150px até ficar ideal */
    width: auto;
    object-fit: contain; 
}

/* =========================================
   NOVA DOBRA 1: HERO SECTION (IMPACTO E IMAGEM)
   ========================================= */
.hero-section {
    /* 1. Definimos o fundo creme e o gradiente radial luminoso juntos */
    background: 
        radial-gradient(circle at 15% 30%, rgba(175, 137, 107, 0.25) 0%, transparent 60%),
        var(--bg-offwhite);
    
    /* 2. Aplicamos a textura usando um pseudo-elemento mais limpo */
    position: relative;
    padding: 80px 0 100px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Criando a textura de ruído com imagem local */
.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Puxando o arquivo diretamente da sua pasta de imagens */
    background-image: url("/image/fundo.png"); /* Certifique-se de que o caminho esteja correto */
    background-repeat: repeat; /* Faz a textura se espalhar por todo o fundo */
    opacity: 0.6; /* Ajuste esse valor (ex: 0.2 para mais fraco, 0.6 para mais forte) */
    pointer-events: none;
    z-index: 1;
}
/* O contentor principal dentro da hero-section */
.hero-container {
    display: flex;
    flex-direction: row-reverse; /* Mantém o texto na direita e foto na esquerda */
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2; /* Garante que o conteúdo fica acima da textura */
}

.hero-content {
    flex: 1.2; /* Dá um pouco mais de largura para o texto */
    max-width: 650px; /* Aumenta o limite de largura do texto */
    text-align: left;
}

.hero-section h1 {
    font-size: 3.2rem; /* Reduzido de 4rem para evitar tantas quebras de linha */
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.15;
}

.hero-section p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin: 0 0 40px 0; 
    font-weight: 300;
    max-width: 100%;
}

.hero-section .btn-primary {
    margin-top: 0;
}

/* --- ESTILOS DA IMAGEM --- */
.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 12px 140px 12px 12px; 
    /* Sombra elegante atualizada para a nova cor */
    box-shadow: -15px 15px 0px rgba(175, 137, 107, 0.25); 
    position: relative;
    z-index: 2;
    object-fit: cover;
}

/* Elemento circular decorativo atrás da imagem */
.hero-shape {
    position: absolute;
    width: 350px;
    height: 350px;
    background-color: var(--brand-orange);
    opacity: 0.05;
    border-radius: 50%;
    top: -40px;
    right: 20px;
    z-index: 1;
}

/* =========================================
   DOBRA 2: PROBLEMAS (DORES)
   ========================================= */
/* =========================================
   DOBRA 2: PROBLEMAS (ESTILO CHECKLIST PREMIUM)
   ========================================= */
.pain-section {
    padding: 100px 0;
    background-color: var(--bg-light); /* Alterna para o creme mais claro */
    text-align: center;
}

.pain-section h2 {
    max-width: 800px;
    margin: 0 auto 56px auto;
    font-size: 2.8rem;
}

/* Cria as duas colunas alinhadas e elegantes (sem grids duros) */
.pain-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px; /* Ajustei o espaçamento para as caixinhas respirarem bem */
    max-width: 1000px; /* Alarguei um pouquinho para caber o texto com folga nas caixas */
    margin: 0 auto 64px auto;
    text-align: left;
}

/* Transforma cada item em uma caixinha premium */
.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 32px; /* Cria o espaço interno da caixinha */
    background-color: var(--bg-offwhite); /* Fundo da caixa destaca sutilmente do fundo da seção */
    border: 1px solid #D7D2C8; /* Borda inicial bem sutil e elegante */
    border-radius: 8px; /* Cantos arredondados */
    transition: all 0.3s ease; /* Prepara a animação suave para o mouse */
}

/* Efeito ao passar o mouse (já dá um toque interativo antes do JS) */
.checklist-item:hover {
    border-color: var(--brand-orange); /* A borda acende na cor caramelo */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03); /* Sombra bem leve para saltar da tela */
    transform: translateY(-2px); /* Dá uma leve flutuada */
}

.checklist-item.is-highlighted {
    border-color: var(--brand-orange);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); /* Sombra um pouquinho mais forte pra destacar bem */
    transform: translateY(-2px);
}

/* O "X" customizado */
.error-icon {
    color: var(--brand-orange);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.4;
    user-select: none;
    margin-top: 2px; /* Alinha perfeitamente com o texto */
}

.checklist-item p {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

/* Rodapé da Seção */
.pain-footer {
    max-width: 750px;
    margin: 0 auto;
}

.footer-highlight {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 300;
}

.pain-footer h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}


/* =========================================
   DOBRA 3: SERVIÇOS
   ========================================= */
/* =========================================
   DOBRA 3: SERVIÇOS (CARROSSEL EDITORIAL)
   ========================================= */
.services-section {
    padding: 100px 0;
    background-color: var(--text-dark); /* Fundo escuro imersivo para destacar os cards */
}

.services-section h2 {
    text-align: center;
    margin-bottom: 56px;
    font-size: 2.8rem;
    color: var(--bg-offwhite); /* Título clareia para dar leitura no fundo escuro */
}

/* Container que segura o carrossel e posiciona as setas */
.carousel-container {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 40px; /* Espaço para as setas não ficarem em cima dos cards */
}

/* O Trilho Horizontal */
.services-carousel {
    display: flex;
    gap: 32px;
    overflow-x: auto; /* Permite arrastar/scrollar de lado nativamente por enquanto */
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none; /* Esconde a barra de rolagem feia no Firefox */
    scroll-snap-type: x mandatory; /* Cria o "trilho magnético" na horizontal */
    scroll-padding-left: 0; /* Garante que ele encoste certinho na esquerda */
}

.services-carousel::-webkit-scrollbar {
    display: none; /* Esconde a barra de rolagem feia no Chrome/Safari */
}

/* Customização dos Cards baseada na imagem de referência */
.service-card {
    flex: 0 0 calc(50% - 16px);
    min-width: 320px;
    background-color: var(--bg-offwhite);
    border: 1px solid transparent;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2); /* Sombra mais profunda para destacar no fundo preto */
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Garante que a foto respeite o arredondamento do card */
    transition: transform 0.3s ease, border-color 0.3s ease;
    scroll-snap-align: start; /* Faz o início do card grudar como um ímã no início do contêiner */
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-orange);
}

.service-image-container {
    width: 100%;
    height: 240px; /* Altura fixa e imersiva para a imagem do card */
    overflow: hidden;
    position: relative;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a foto preencher o espaço sem distorcer */
    transition: transform 0.5s ease;
}
.service-card-content {
    padding: 36px 32px 40px 32px; /* Margens internas elegantes */
}

.service-card:hover .service-card-img {
    transform: scale(1.05);
}

.service-icon {
    font-size: 1.8rem;
    margin-bottom: 24px;
    opacity: 0.8;
}

.service-card h3 {
    font-size: 1.75rem; /* Título ligeiramente maior e mais imponente */
    font-family: var(--font-title);
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.service-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.6;
}

/* Tag Premium delicada */
.tag-premium {
    font-size: 0.75rem;
    background-color: var(--brand-orange);
    color: #FFFFFF;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: var(--font-text);
    font-weight: 500;
    display: inline-block;
    margin-left: 8px;
    transform: translateY(-3px); /* Centraliza verticalmente com a linha do texto */
}

/* Customização das Setas do Carrossel */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFFFFF;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.carousel-arrow:hover {
    background-color: var(--brand-orange);
    color: #FFFFFF;
    border-color: var(--brand-orange);
}

.prev-btn { left: -60px; }
.next-btn { right: -60px; }

.services-cta {
    text-align: center;
    margin-top: 48px;
}

/* =========================================
   DOBRA 5: SOBRE
   ========================================= */
.about-section {
    padding: 120px 0;
    background-color: var(--bg-offwhite); /* Volta para o creme padrão após a seção escura */
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px; /* Amplo espaço para dar o aspecto de revista de luxo */
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    max-width: 450px;
}

.about-img {
    width: 100%;
    height: 580px; /* Foto vertical imponente */
    object-fit: cover;
    border-radius: 4px;
    position: relative;
    z-index: 2;
}

/* Moldura sutil que dá o detalhe de design */
.about-image-border {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--brand-orange);
    top: 16px;
    left: -16px;
    z-index: 1;
    border-radius: 4px;
}

.about-content {
    flex: 1.2;
    text-align: left;
}

.about-section h2 {
    font-size: 3rem;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 32px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinha os textos com o início da coluna */
}

.stat-number {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--brand-orange); /* Usa a cor marrom elegante da paleta */
    line-height: 1;
    margin-bottom: 12px;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
    font-weight: 400;
}

/* =========================================
   DOBRA 6: FAQ
   ========================================= */
.faq-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto; /* Centraliza a lista no meio da tela */
}

.faq-item {
    border-bottom: 1px solid #D7D2C8; /* CORRIGIDO: Linha mais escura para aparecer no fundo branco */
    padding: 20px 0;
    cursor: pointer; 
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark); /* CORRIGIDO: Texto escuro para dar leitura */
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--brand-orange);
    transition: transform 0.3s ease; /* Prepara o giro do "+" */
}

/* --- A Mágica do Acordeão (Fechado por padrão) --- */
.faq-answer {
    max-height: 0; /* Esmaga a altura para zero */
    overflow: hidden; /* Esconde o texto que "vazar" da altura zero */
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.faq-answer p {
    margin: 0;
    color: var(--text-dark); /* Deixe cinza claro ou a cor que preferir */
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Estado Ativo (Quando o JS adicionar a classe) --- */
.faq-item.active .faq-question h3 {
    color: var(--brand-orange); /* Destaca a pergunta lida */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Gira o "+" para virar um "X" */
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Dá espaço suficiente para o texto aparecer */
    opacity: 1;
    margin-top: 12px; /* Dá um espacinho entre a pergunta e a resposta */
}

/* =========================================
   DOBRA 7: CONTATO (FORMULÁRIO)
   ========================================= */
.contact-section {
    padding: 120px 0 60px 0;
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.contact-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03); /* Sombra bem orgânica e leve */
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-family: var(--font-text);
    font-size: 1rem;
    background-color: var(--bg-offwhite);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-orange);
}

.btn-submit {
    width: 100%;
    margin-top: 8px;
}

/* =========================================
   SEÇÃO FINAL E RODAPÉ
   ========================================= */
.final-cta-section {
    background-color: var(--brand-orange);
    color: var(--bg-offwhite);
    padding: 60px 0; /* Reduzido de 120px para 60px para deixar a barra fina */
    text-align: center;
    margin-top: 40px;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 3.5rem;
    color: var(--text-dark); /* Mudado para o preto suave para alto impacto */
    margin-bottom: 32px;
    letter-spacing: -1.5px;
    font-family: var(--font-title);
    line-height: 1.15;
}

.final-cta-content p {
    color: var(--bg-offwhite); /* Texto do meio fica no creme claro para equilibrar */
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 300;
}

/* Destaque para a última frase de chamada */
.final-phrase {
    color: var(--text-dark) !important; /* Mudado para o preto suave */
    font-weight: 600 !important;        /* Um pouco mais encorpado */
    font-size: 1.3rem !important;
    margin-top: 32px;
}

/* Seta de fluxo visual guiando para o formulário */
.flow-arrow {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-top: 24px; /* Reduzido o espaço acima da seta */
    margin-bottom: 0;  /* Garante que nada empurre a borda inferior */
    opacity: 0.8;
    animation: bounceUp 2s infinite;
}

@keyframes bounceUp {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.site-footer {
    background-color: var(--text-dark); /* Mantém o preto elegante da navbar */
    padding: 24px 0;                    /* Padding bem fino para emagrecer a barra */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-info p {
    color: var(--bg-secondary);
    font-size: 0.9rem;
    font-weight: 300;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--brand-orange);
}

.footer-copyright {
    text-align: center;
    color: #999;
    font-size: 0.8rem;
    border-top: 1px solid var(--border-light);
    padding-top: 32px;
}


/* Área das Redes Sociais */
.footer-socials {
    display: flex;
    gap: 28px;
}

/* Links maiores com efeito herdado */
.social-link {
    color: var(--bg-offwhite);
    font-size: 1.05rem; /* Um pouco maior como solicitado */
    text-decoration: none;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px; /* Espaço entre o ícone e o texto */
    transition: color 0.3s ease, opacity 0.3s ease;
}

/* Tamanho do Ícone SVG */
.social-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

/* Efeito de Hover aplicando em todo o conjunto (Ícone + Texto) */
.social-link:hover {
    color: var(--brand-orange); /* Puxa o marrom/caramelo premium da marca */
}

.social-link:hover .social-icon {
    transform: translateY(-2px); /* Dá um mini salto elegante no ícone */
}

/* =========================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366; /* Verde oficial do WhatsApp */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 9999; /* Fica por cima de absolutamente tudo na tela */
    transition: transform 0.3s ease;
    /* Adiciona a animação de pulso infinito */
    animation: pulse-whatsapp 2s infinite; 
}

/* O efeito de dar uma "crescidinha" ao passar o mouse */
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- A Mágica do Pulso --- */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); /* A sombra expande e some */
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* =========================================
   RESPONSIVIDADE (MOBILE & TABLETS)
   ========================================= */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr; /* Muda serviços para 1 coluna */
        max-width: 600px;
    }

.hero-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .nav-links {
        display: none; /* Oculta links do menu no mobile por simplicidade agora */
    }

    .stats-grid {
            grid-template-columns: 1fr;
            gap: 32px;
            text-align: center;
        }

    .pain-checklist {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 12px;
    }
    
    .pain-section h2 {
        font-size: 2rem;
    }
    
    .pain-footer h3 {
        font-size: 1.4rem;
    }

    .form-container {
        padding: 32px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
        align-items: center;
    }
    
    .pain-footer p {
        font-size: 1.25rem;
    }

    .footer-container {
        flex-direction: column-reverse;
        gap: 16px;
        text-align: center;
        padding: 20px 16px;
    }
    .footer-socials {
        gap: 24px;
    }

    .service-card {
        flex: 0 0 100%; /* O card ocupa a largura inteira */
        padding: 32px 24px;
    }
    
    .carousel-container {
        padding: 0 16px;
    }
    
    .carousel-arrow {
        display: none; /* No mobile o usuário arrasta com o próprio dedo */
    }

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

    .about-container {
        flex-direction: column;
        gap: 48px;
    }
    
    .about-image-wrapper {
        max-width: 100%;
        width: 100%;
    }
    
    .about-img {
        height: 450px;
    }
    
    .about-content {
        text-align: center;
    }

    .final-cta-content h2 {
        font-size: 2.4rem;
    }
    .final-cta-content p {
        font-size: 1.1rem;
    }
    .final-phrase {
        font-size: 1.15rem !important;
    }

    /* Tratamento para telas menores (Tablets e Celulares) */
@media (max-width: 992px) {
    /* Em telas médias, trazemos eles um pouco de volta para não sumirem da tela */
    .prev-btn { left: -20px; }
    .next-btn { right: -20px; }
}

@media (max-width: 768px) {
    /* No celular, jogamos eles levemente para dentro do card para o usuário conseguir clicar, 
       já que a tela é estreita. (Ou você pode até escondê-los com 'display: none' e deixar a pessoa arrastar com o dedo) */
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    /* Reduz um pouco o ícone para caber na bolinha menor */
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}
}
