/* =====================================================
   ATELIÊ DAS UNHAS - SITE INSTITUCIONAL
   Folha de Estilos Principal
   =====================================================

   ÍNDICE:
   1. Variáveis CSS (cores, sombras, etc.)
   2. Reset e Base
   3. Tipografia
   4. Botões
   5. Header/Navegação
   6. Hero Section
   7. Seção Sobre
   8. Seção Serviços
   9. Seção Destaques
   10. Seção Benefícios
   11. Seção Depoimentos
   12. Seção FAQ
   13. Seção Contato
   14. Footer
   15. Responsividade

   ===================================================== */

/* ========== 1. VARIÁVEIS CSS ========== */
/* EDITÁVEL: Personalize as cores principais do tema aqui */
:root {
    /* Cores principais - tons de dourado, preto e rosa */
    --primary: #d4af37;
    /* Dourado principal */
    --primary-dark: #b8960f;
    /* Dourado escuro */
    --secondary: #ff6b9d;
    /* Rosa vibrante */
    --accent: #1a1a1a;
    /* Preto elegante */

    /* Cores de fundo */
    --bg: #fefefe;
    /* Fundo principal (quase branco) */
    --bg-alt: #fff5e6;
    /* Fundo alternativo (creme dourado) */

    /* Cores de texto */
    --text: #1a1a1a;
    /* Texto principal (preto) */
    --text-light: #6b6b6b;
    /* Texto secundário (cinza) */
    --white: #ffffff;
    /* Branco puro */

    /* Efeitos */
    --shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
    --shadow-hover: 0 8px 30px rgba(212, 175, 55, 0.25);

    /* Bordas e transições */
    --radius: 16px;
    /* Bordas arredondadas */
    --radius-sm: 10px;
    /* Bordas menores */
    --transition: all 0.3s ease;
    /* Transição suave */
}

/* ========== 2. RESET E BASE ========== */
/* Remove margens e paddings padrão do navegador */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Rolagem suave ao clicar em links de âncora */
html {
    scroll-behavior: smooth;
}

/* Configurações base do body */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* Container centralizado com largura máxima */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Imagens responsivas */
img {
    max-width: 100%;
    height: auto;
}

/* Remove decoração de links */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove marcadores de lista */
ul {
    list-style: none;
}

.nav-whatsapp-icon {
    width: 70px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    cursor: pointer;
}

/* ========== 3. TIPOGRAFIA ========== */
/* Título principal (Hero) */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    /* Tamanho responsivo */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Títulos de seção */
h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Subtítulos */
h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Títulos menores */
h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Parágrafos */
p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ========== 4. BOTÕES ========== */
/* Estilo base para todos os botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

/* Botão principal (destaque) */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--accent);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Efeito hover do botão principal */
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Botão secundário (outline) */
.btn-secondary {
    background: var(--white);
    color: var(--accent);
    border: 2px solid var(--accent);
}

/* Efeito hover do botão secundário */
.btn-secondary:hover {
    background: var(--accent);
    color: var(--white);
}

.instagram-button .btn-secondary {

    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}

/* Botão do WhatsApp */
.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    margin-top: 10px;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* ========== 5. HEADER / NAVEGAÇÃO ========== */
/* Header fixo no topo */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    /* Fica acima de todo conteúdo */
    padding: 15px 0;
}

/* Container da navegação */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo/Nome do negócio */
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

/* Menu de navegação */
.nav-menu {
    display: flex;
    gap: 30px;
}

/* Links do menu */
.nav-menu a {
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    position: relative;
}

/* Hover nos links */
.nav-menu a:hover {
    color: var(--primary);
}

/* Linha animada abaixo do link */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Botão hambúrguer (mobile) - escondido no desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

/* Linhas do hambúrguer */
.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========== 6. HERO SECTION ========== */
/* Seção principal do topo */
.hero {
    padding: 140px 0 80px;
    /* Espaço extra no topo por causa do header fixo */
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* EDITÁVEL: Background do hero com imagem */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

/* EDITÁVEL: Imagem de fundo do hero */
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* EDITÁVEL: Overlay escuro sobre o background */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.7) 100%);
}

/* Grid do hero - 2 colunas */
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Conteúdo do hero com texto branco */
.hero-content {
    color: var(--white);
}

.hero-content h1,
.hero-content .hero-subtitle {
    color: var(--white);
}

/* Badge de destaque no hero */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Subtítulo do hero */
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Container dos botões */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Estatísticas do hero */
.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Área visual do hero */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* EDITÁVEL: Container da imagem circular do hero */
.hero-image-container {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
    border: 5px solid rgba(212, 175, 55, 0.3);
    animation: float 3s ease-in-out infinite;
}

/* EDITÁVEL: Imagem circular do hero */
.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animação de flutuação */
@keyframes float {

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

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

/* Badge flutuante no hero */
.floating-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow);
}

/* ========== 7. SEÇÕES GERAIS ========== */
section {
    padding: 100px 0;
}

/* Cabeçalho das seções */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header p {
    font-size: 1.125rem;
}

/* ========== 8. SEÇÃO SOBRE ========== */
.sobre {
    background: var(--white);
}

/* Grid da seção sobre */
.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* EDITÁVEL: Imagem da seção sobre */
.sobre-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.sobre-image img {
    width: 600px;
    height: 490px;
    object-fit: cover;
    transition: var(--transition);
}

.sobre-image:hover img {
    transform: scale(1.05);
}


.sobre-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Features da seção sobre */
.sobre-features {
    display: grid;
    gap: 30px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature h3 {
    color: var(--text);
    margin-bottom: 5px;
}

.feature p {
    margin: 0;
    font-size: 0.95rem;
}

/* ========== 9. GALERIA ========== */
/* EDITÁVEL: Galeria de fotos */
.galeria {
    background: var(--bg-alt);
    padding: 100px 0;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

/* Primeiro item ocupa 2 colunas e 2 linhas */
.galeria-item.grande {
    grid-column: span 2;
    grid-row: span 2;
}

.galeria-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.galeria-item:hover img {
    transform: scale(1.1);
}

/* ========== 10. SEÇÃO SERVIÇOS ========== */
.servicos {
    background: var(--bg-alt);
}

/* Grid de cards de serviços */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card de serviço individual */
.servico-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

/* Hover do card de serviço */
.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* EDITÁVEL: Imagem do serviço */
.servico-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.servico-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.container-imagens {
    display: flex;
    gap: 15px; /* Espaço de 15 pixels entre as imagens */
}

.container-imagens img {
    width: 100%;
    max-width: 52%; /* Ajusta o tamanho máximo da imagem */
    height: auto;
}

.servico-card:hover .servico-image img {
    transform: scale(1.1);
}

/* Conteúdo do card de serviço */
.servico-content {
    padding: 25px;
    text-align: center;
}

.servico-content h3 {
    color: var(--text);
    margin-bottom: 10px;
}

.servico-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Tag de preço */
.preco {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ========== 11. SEÇÃO DESTAQUES ========== */
.destaques {
    background: var(--white);
}

/* Grid de destaques */
.destaques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card de destaque */
.destaque-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.destaque-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* EDITÁVEL: Imagem do destaque */
.destaque-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.destaque-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destaque-card:hover .destaque-image img {
    transform: scale(1.1);
}

/* Badge antes/depois sobre a imagem */
.before-after-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(212, 175, 55, 0.95);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

/* Conteúdo do destaque */
.destaque-content {
    padding: 25px;
}

.destaque-content h3 {
    color: var(--text);
    margin-bottom: 10px;
}

/* Badge do destaque */
.destaque-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 20px 45px;
    border-radius: 80px;
    font-weight: 700;
    margin-top: 10px;
    font-size: 20px;
}

/* ========== 11. SEÇÃO BENEFÍCIOS ========== */
.beneficios {
    background: linear-gradient(135deg, var(--accent), #2a2a2a);
    color: var(--white);
}

/* Textos brancos na seção de benefícios */
.beneficios .section-header h2,
.beneficios .section-header p {
    color: var(--white);
}

/* Grid de benefícios */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Card de benefício */
.beneficio-card {
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.beneficio-card:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.beneficio-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.beneficio-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.beneficio-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
}

/* ========== 12. SEÇÃO DEPOIMENTOS ========== */
.depoimentos {
    background: var(--bg-alt);
}

/* Grid de depoimentos */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card de depoimento */
.depoimento-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Header do depoimento (avatar + nome) */
.depoimento-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* EDITÁVEL: Avatar com imagem real */
.avatar-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Avatar com iniciais (fallback) */
.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.depoimento-info h4 {
    color: var(--text);
    margin-bottom: 2px;
}

.depoimento-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Texto do depoimento */
.depoimento-card p {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Estrelas de avaliação */
.depoimento-stars {
    font-size: 1rem;
    letter-spacing: 2px;
}

/* ========== 13. SEÇÃO FAQ ========== */
.faq {
    background: var(--white);
}

/* Lista de perguntas */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

/* Item individual do FAQ */
.faq-item {
    margin-bottom: 15px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Botão da pergunta */
.faq-question {
    width: 100%;
    background: var(--bg);
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-alt);
}

/* Ícone de expandir/colapsar */
.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
    color: var(--primary);
}

/* Rotação do ícone quando ativo */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Container da resposta (escondido por padrão) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--white);
}

/* Resposta expandida */
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-answer p {
    margin: 0;
}

/* ========== 14. SEÇÃO CONTATO ========== */
.contato {
    background: var(--bg-alt);
}

/* Grid do contato */
.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Lista de informações */
.contato-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Item de informação */
.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--text);
    margin-bottom: 5px;
}

.info-item p {
    margin: 0;
}

/* Container do mapa */
.contato-mapa {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Placeholder do mapa */
.mapa-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px dashed var(--text-light);
}

.mapa-placeholder:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--bg-alt), var(--white));
}

.mapa-pin {
    font-size: 3rem;
    margin-bottom: 10px;
}

.mapa-placeholder p {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}

.mapa-placeholder span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ========== ÁREA DO AGENTE DE IA ========== */
/* Área reservada para integração futura */
.ai-agent-area {
    min-height: 0;
    padding: 0;
}

/* ========== 15. FOOTER ========== */
.footer {
    background: var(--accent);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary);
}

.footer-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

/* Links do footer */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

/* Redes sociais */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social a {
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    transform: scale(1.2);
}

/* Rodapé inferior */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary);
}

/* ========== POLÍTICA DE PRIVACIDADE ========== */
.privacidade {
    background: #0f0f0f;
    padding: 40px 0;
}

.privacidade h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.privacidade p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* ========== 16. RESPONSIVIDADE ========== */

/* Tablets e telas médias */
@media (max-width: 992px) {

    /* Hero em coluna única no tablet */
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    /* Visual do hero primeiro no mobile */
    .hero-visual {
        order: -1;
    }

    .hero-image-container {
        max-width: 300px;
    }

    /* Sobre em coluna única */
    .sobre-content {
        grid-template-columns: 1fr;
    }

    .sobre-image {
        max-height: 400px;
    }

    /* Contato em coluna única */
    .contato-content {
        grid-template-columns: 1fr;
    }

    /* Galeria responsiva */
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .galeria-item.grande {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* Celulares */
@media (max-width: 768px) {

    /* Menu mobile */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }

    /* Menu mobile ativo */
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    /* Mostra o botão hambúrguer */
    .nav-toggle {
        display: flex;
    }

    /* Animação do hambúrguer para X */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Ajustes de padding */
    .hero {
        padding: 120px 0 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    section {
        padding: 60px 0;
    }

    /* Grids em coluna única */
    .servicos-grid,
    .destaques-grid,
    .beneficios-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    /* Galeria mobile */
    .galeria-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .galeria-item.grande {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Celulares pequenos */
@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Botões empilhados */
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* ========== ETAPA 2.1 — HEADER E NAVEGAÇÃO ========== */
.header {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    padding: 7px 0;
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 8px 30px rgba(26, 26, 26, 0.08);
}

.nav {
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #2a2a2a);
    color: var(--primary);
    border: 1px solid rgba(212, 175, 55, 0.45);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    box-shadow: 0 5px 14px rgba(26, 26, 26, 0.12);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-text strong {
    color: var(--accent);
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.logo-text small {
    margin-top: 4px;
    color: var(--primary-dark);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.nav-menu {
    gap: 24px;
    align-items: center;
    margin-left: auto;
}

.nav-menu a {
    font-size: 0.94rem;
    font-weight: 600;
}

.nav-menu a::after {
    height: 2px;
    border-radius: 999px;
}

.nav-whatsapp-icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
    right: 22px;
    bottom: 22px;
    filter: drop-shadow(0 8px 16px rgba(18, 140, 126, 0.24));
    transition: transform 0.25s ease, filter 0.25s ease;
}

.nav-whatsapp-icon:hover {
    transform: translateY(-3px) scale(1.04);
    filter: drop-shadow(0 10px 20px rgba(18, 140, 126, 0.32));
}

.nav-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background: rgba(255, 255, 255, 0.9);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1100px) {
    .nav-menu {
        gap: 16px;
    }

    .nav-menu a {
        font-size: 0.88rem;
    }

    .logo-text small {
        display: none;
    }
}

@media (max-width: 900px) {
    .header {
        padding: 9px 0;
    }

    .nav {
        position: relative;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
        z-index: 1002;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        margin: 0;
        background: rgba(255, 255, 255, 0.985);
        border: 1px solid rgba(212, 175, 55, 0.16);
        border-radius: 18px;
        box-shadow: 0 18px 40px rgba(26, 26, 26, 0.12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 13px 14px;
        border-radius: 10px;
        font-size: 0.95rem;
    }

    .nav-menu a:hover {
        background: var(--bg-alt);
    }

    .nav-menu a::after {
        display: none;
    }
}

@media (max-width: 520px) {
    .logo-mark {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .logo-text strong {
        font-size: 0.96rem;
    }

    .nav-whatsapp-icon {
        width: 54px;
        height: 54px;
        right: 16px;
        bottom: 16px;
    }
}


/* ========== ETAPA 2.2 — HERO ========== */
.hero {
    padding: 150px 0 90px;
    min-height: 96vh;
    isolation: isolate;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 35%, rgba(212, 175, 55, 0.16), transparent 32%),
        linear-gradient(90deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.72) 43%, rgba(10, 10, 10, 0.38) 72%, rgba(10, 10, 10, 0.48) 100%);
    z-index: 1;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.36) 0%, rgba(26, 26, 26, 0.2) 100%);
    z-index: 0;
}

.hero .container {
    gap: clamp(42px, 6vw, 76px);
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.38);
    color: #fff8dc;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hero-content h1 {
    max-width: 12ch;
    font-size: clamp(2.75rem, 5.4vw, 5.15rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    margin-bottom: 24px;
    text-wrap: balance;
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.22);
}

.hero-content .hero-subtitle {
    max-width: 610px;
    font-size: clamp(1.02rem, 1.8vw, 1.22rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 32px;
}

.hero-buttons {
    gap: 12px;
    margin-bottom: 36px;
}

.hero-buttons .btn {
    min-height: 52px;
    padding: 14px 24px;
    border-radius: 999px;
}

.hero-cta-primary {
    color: #161616;
    box-shadow: 0 10px 26px rgba(212, 175, 55, 0.26);
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.instagram-button .hero-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    filter: none;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.72);
}

.hero-stats {
    gap: 0;
    width: fit-content;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat {
    position: relative;
    min-width: 125px;
    padding: 0 18px;
}

.stat + .stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16%;
    bottom: 16%;
    width: 1px;
    background: rgba(255, 255, 255, 0.16);
}

.stat-number {
    font-size: 1.45rem;
    color: #f4d56f;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.25;
}

.hero-visual {
    flex-direction: column;
    gap: 18px;
}

.hero-image-container {
    width: min(100%, 430px);
    max-width: 430px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.32),
        0 0 0 10px rgba(255, 255, 255, 0.04),
        0 0 0 11px rgba(212, 175, 55, 0.16);
    animation: heroFloat 5s ease-in-out infinite;
}

.hero-main-image {
    transform: scale(1.02);
}

.hero-image-caption {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.86rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.caption-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding: 130px 0 72px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .hero-content {
        max-width: 760px;
        text-align: center;
        margin: 0 auto;
    }

    .hero-content h1 {
        max-width: 14ch;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(2.7rem, 8vw, 4.6rem);
    }

    .hero-content .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-stats {
        margin: 0 auto;
    }

    .hero-image-container {
        width: min(78vw, 390px);
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 118px 0 58px;
    }

    .hero-background::after {
        background:
            linear-gradient(180deg, rgba(10, 10, 10, 0.84) 0%, rgba(10, 10, 10, 0.72) 58%, rgba(10, 10, 10, 0.82) 100%);
    }

    .hero-content h1 {
        font-size: clamp(2.4rem, 12vw, 3.45rem);
        line-height: 1.02;
    }

    .hero-content .hero-subtitle {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons .btn,
    .instagram-button,
    .instagram-button .btn {
        width: 100%;
    }

    .hero-stats {
        width: 100%;
        max-width: 430px;
        padding: 14px 8px;
    }

    .stat {
        min-width: 0;
        flex: 1;
        padding: 0 8px;
    }

    .stat-number {
        font-size: 1.18rem;
    }

    .stat-label {
        font-size: 0.72rem;
    }

    .hero-image-container {
        width: min(82vw, 330px);
    }

    .hero-image-caption {
        font-size: 0.78rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-image-container {
        animation: none;
    }
}


/* ========== ETAPA 2.3 — GALERIA E DESTAQUES ========== */
.section-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.galeria {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(212, 175, 55, 0.10), transparent 25%),
        var(--bg-alt);
}

.galeria .section-header,
.destaques .section-header {
    margin-bottom: 44px;
}

.galeria-grid {
    grid-template-rows: repeat(2, 230px);
    gap: 18px;
}

.galeria-item {
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.08);
    background: #eee;
}

.galeria-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.14));
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.galeria-item:hover::after {
    opacity: 0.35;
}

.galeria-item img {
    transform: scale(1.001);
    transition: transform 0.55s cubic-bezier(.2,.7,.2,1);
}

.galeria-item:hover img {
    transform: scale(1.045);
}

.destaques {
    position: relative;
    background:
        linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
}

.destaques-grid {
    gap: 24px;
    align-items: stretch;
}

.destaque-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 20px;
    background: rgba(255,255,255,0.94);
    box-shadow: 0 12px 34px rgba(26, 26, 26, 0.07);
}

.destaque-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(26, 26, 26, 0.11);
}

.destaque-image {
    height: 245px;
}

.destaque-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 65%, rgba(0,0,0,0.10));
    pointer-events: none;
}

.destaque-card:hover .destaque-image img {
    transform: scale(1.045);
}

.destaque-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 26px;
    text-align: left;
}

.destaque-content h3 {
    font-size: 1.3rem;
    line-height: 1.25;
    margin-bottom: 10px;
}

.destaque-content p {
    line-height: 1.7;
    margin-bottom: 18px;
}

.destaque-content .destaque-badge {
    align-self: flex-start;
    margin-top: auto;
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 0.95rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #171717;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.destaque-content .destaque-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 20px rgba(212, 175, 55, 0.26);
}

@media (max-width: 900px) {
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 260px 190px 190px;
    }

    .galeria-item.grande {
        grid-column: span 2;
        grid-row: span 1;
    }

    .destaque-image {
        height: 225px;
    }
}

@media (max-width: 600px) {
    .galeria,
    .destaques {
        padding: 72px 0;
    }

    .galeria .section-header,
    .destaques .section-header {
        margin-bottom: 32px;
    }

    .galeria-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 230px 150px 150px;
        gap: 10px;
    }

    .galeria-item {
        border-radius: 14px;
    }

    .destaques-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .destaque-image {
        height: 220px;
    }

    .destaque-content {
        padding: 22px;
    }
}


/* ========== ETAPA 2.4 — CARDS DE SERVIÇOS ========== */
.servicos {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 10%, rgba(255, 107, 157, 0.06), transparent 24%),
        radial-gradient(circle at 10% 82%, rgba(212, 175, 55, 0.09), transparent 28%),
        var(--bg-alt);
}

.servicos .section-header {
    margin-bottom: 44px;
}

.servicos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.servico-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.13);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(26, 26, 26, 0.065);
}

.servico-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(26, 26, 26, 0.11);
    border-color: rgba(212, 175, 55, 0.28);
}

.servico-image {
    height: 270px;
    background: #f3eee8;
}

.servico-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 68%, rgba(0, 0, 0, 0.08));
    pointer-events: none;
}

.servico-image img {
    transform: scale(1.001);
    transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}

.servico-card:hover .servico-image img {
    transform: scale(1.04);
}

.container-imagens {
    width: 100%;
    height: 100%;
    gap: 3px;
}

.container-imagens img {
    width: 50%;
    max-width: 50%;
    height: 100%;
    object-fit: cover;
}

.servico-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
    text-align: left;
}

.servico-content h3 {
    min-height: 2.5em;
    font-size: 1.22rem;
    line-height: 1.25;
    margin-bottom: 10px;
}

.servico-content p {
    line-height: 1.68;
    margin-bottom: 20px;
}

.servico-content .destaque-badge {
    align-self: flex-start;
    margin-top: auto;
    padding: 10px 17px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #171717;
    font-size: 0.92rem;
    line-height: 1.2;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.servico-content .destaque-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 20px rgba(212, 175, 55, 0.24);
}

@media (max-width: 1020px) {
    .servicos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .servicos {
        padding: 72px 0;
    }

    .servicos .section-header {
        margin-bottom: 32px;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .servico-card {
        border-radius: 18px;
    }

    .servico-image {
        height: 250px;
    }

    .servico-content {
        padding: 22px;
    }

    .servico-content h3 {
        min-height: 0;
        font-size: 1.18rem;
    }
}


/* ========== ETAPA 2.5 — BENEFÍCIOS E SOBRE ========== */
.section-eyebrow-light {
    color: #f4d56f;
}

.beneficios {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(212, 175, 55, 0.14), transparent 26%),
        radial-gradient(circle at 88% 82%, rgba(255, 107, 157, 0.08), transparent 24%),
        linear-gradient(135deg, #151515, #262626);
}

.beneficios::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.beneficios .container {
    position: relative;
    z-index: 1;
}

.beneficios .section-header {
    margin-bottom: 44px;
}

.beneficios-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.beneficio-card {
    position: relative;
    padding: 28px 22px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(212,175,55,0.20);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.beneficio-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(212,175,55,0.42);
    transform: translateY(-5px);
}

.beneficio-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.22);
    font-size: 1.8rem;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.beneficio-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.beneficio-card p {
    max-width: 26ch;
    line-height: 1.65;
    color: rgba(255,255,255,0.78);
}

.sobre {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 12%, rgba(212,175,55,0.07), transparent 26%),
        #fff;
}

.sobre .section-header {
    margin-bottom: 44px;
}

.sobre-content {
    gap: clamp(34px, 5vw, 62px);
    align-items: stretch;
}

.sobre-image {
    position: relative;
    min-height: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(26,26,26,0.10);
    border: 1px solid rgba(212,175,55,0.14);
}

.sobre-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 66%, rgba(0,0,0,0.10));
    pointer-events: none;
}

.sobre-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(.2,.7,.2,1);
}

.sobre-image:hover img {
    transform: scale(1.035);
}

.sobre-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sobre-text {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(212,175,55,0.16);
}

.sobre-text p {
    font-size: 1.04rem;
    line-height: 1.85;
}

.sobre-features {
    gap: 16px;
}

.feature {
    align-items: center;
    padding: 16px 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212,175,55,0.055), rgba(255,255,255,0.75));
    border: 1px solid rgba(212,175,55,0.11);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature:hover {
    transform: translateX(4px);
    border-color: rgba(212,175,55,0.25);
    box-shadow: 0 10px 24px rgba(26,26,26,0.055);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(212,175,55,0.12);
    font-size: 1.6rem;
}

.feature h3 {
    font-size: 1.05rem;
    margin-bottom: 3px;
}

.feature p {
    color: var(--text-light);
    line-height: 1.55;
}

@media (max-width: 1020px) {
    .beneficios-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sobre-content {
        grid-template-columns: 1fr;
    }

    .sobre-image {
        max-height: 520px;
    }

    .sobre-image img {
        min-height: 420px;
    }
}

@media (max-width: 640px) {
    .beneficios,
    .sobre {
        padding: 72px 0;
    }

    .beneficios .section-header,
    .sobre .section-header {
        margin-bottom: 32px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .beneficio-card {
        min-height: 0;
        padding: 24px 20px;
    }

    .sobre-image {
        border-radius: 18px;
    }

    .sobre-image img {
        min-height: 340px;
    }

    .sobre-text p {
        font-size: 1rem;
        line-height: 1.72;
    }

    .feature {
        align-items: flex-start;
        padding: 15px 16px;
    }
}


/* ========== ETAPA 2.6 — AVALIAÇÕES E FAQ ========== */
.depoimentos {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(212, 175, 55, 0.08), transparent 24%),
        linear-gradient(180deg, #fffaf2 0%, #fff 100%);
}

.depoimentos .section-header,
.faq .section-header {
    margin-bottom: 42px;
}

.depoimentos .elfsight-app-1f4ed263-e3fc-4e07-99df-0a23e3541d42 {
    max-width: 1120px;
    margin: 0 auto;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow: 0 16px 40px rgba(26, 26, 26, 0.06);
}

.faq {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 12%, rgba(212, 175, 55, 0.07), transparent 25%),
        #fff;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.14);
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.045);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.28);
    box-shadow: 0 12px 28px rgba(26, 26, 26, 0.065);
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.34);
    box-shadow: 0 14px 32px rgba(26, 26, 26, 0.075);
}

.faq-question {
    width: 100%;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    border: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    color: var(--primary-dark);
}

.faq-question:focus-visible {
    outline: 3px solid rgba(212, 175, 55, 0.28);
    outline-offset: -3px;
}

.faq-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.11);
    color: var(--primary-dark);
    font-size: 1.25rem;
    line-height: 1;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(212, 175, 55, 0.20);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 360px;
    padding: 0 20px 20px;
}

.faq-answer p {
    margin: 0;
    padding-top: 2px;
    line-height: 1.75;
    color: var(--text-light);
}

@media (max-width: 640px) {
    .depoimentos,
    .faq {
        padding: 72px 0;
    }

    .depoimentos .section-header,
    .faq .section-header {
        margin-bottom: 30px;
    }

    .depoimentos .elfsight-app-1f4ed263-e3fc-4e07-99df-0a23e3541d42 {
        padding: 8px;
        border-radius: 18px;
    }

    .faq-list {
        gap: 10px;
    }

    .faq-item {
        border-radius: 14px;
    }

    .faq-question {
        min-height: 62px;
        padding: 16px;
        gap: 14px;
        font-size: 0.95rem;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 17px;
    }

    .faq-answer p {
        font-size: 0.94rem;
        line-height: 1.65;
    }
}


/* ========== ETAPA 2.7 — CONTATO, MAPA E FOOTER ========== */
.contato {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 18%, rgba(212, 175, 55, 0.08), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
}

.contato .section-header {
    margin-bottom: 42px;
}

.contato-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
    gap: 32px;
    align-items: stretch;
}

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

.contato-card {
    padding: 22px;
    border-radius: 18px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(212,175,55,0.13);
    box-shadow: 0 10px 26px rgba(26,26,26,0.055);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contato-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212,175,55,0.25);
    box-shadow: 0 14px 32px rgba(26,26,26,0.075);
}

.info-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(212,175,55,0.11);
    font-size: 1.45rem;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.info-item p,
.info-item a {
    line-height: 1.6;
}

.contato-link-mapa {
    margin-top: 6px;
    font-size: 0.86rem;
    color: var(--primary-dark);
}

.btn-whatsapp {
    border-radius: 999px;
    padding: 11px 17px;
    font-size: 0.92rem;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.16);
}

.contato-mapa {
    min-height: 100%;
}

.mapa-placeholder {
    height: 100%;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 32px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 42%, rgba(212,175,55,0.16), transparent 30%),
        linear-gradient(135deg, #1b1b1b, #2b2b2b);
    color: var(--white);
    border: 1px solid rgba(212,175,55,0.22);
    box-shadow: 0 16px 38px rgba(26,26,26,0.12);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mapa-placeholder:hover,
.mapa-placeholder:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(212,175,55,0.42);
    box-shadow: 0 20px 46px rgba(26,26,26,0.16);
}

.mapa-placeholder:focus-visible {
    outline: 3px solid rgba(212,175,55,0.28);
    outline-offset: 3px;
}

.mapa-pin {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212,175,55,0.14);
    border: 1px solid rgba(212,175,55,0.24);
    font-size: 2rem;
}

.mapa-placeholder p {
    margin: 8px 0 0;
    color: var(--white);
    font-size: 1.18rem;
    font-weight: 700;
}

.mapa-placeholder span {
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
}

.footer {
    position: relative;
    background:
        radial-gradient(circle at 12% 12%, rgba(212,175,55,0.08), transparent 26%),
        #111;
    color: var(--white);
    padding: 58px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.25fr 1fr auto;
    gap: 34px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-logo {
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 800;
}

.footer-brand span {
    color: rgba(255,255,255,0.62);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
}

.footer-content > p {
    margin: 0;
    max-width: 34ch;
    color: rgba(255,255,255,0.70);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.80);
    font-weight: 600;
    font-size: 0.92rem;
}

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

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 126px;
    padding: 10px 13px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.84);
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
    background: rgba(212,175,55,0.10);
    border-color: rgba(212,175,55,0.22);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.56);
    font-size: 0.84rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.70);
}

.footer-bottom a:hover {
    color: var(--primary);
}

.privacidade {
    padding: 34px 0 42px;
    background: #0d0d0d;
    color: rgba(255,255,255,0.72);
}

.privacidade h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.privacidade p {
    margin: 0;
    max-width: 980px;
    color: rgba(255,255,255,0.60);
    font-size: 0.88rem;
    line-height: 1.7;
}

@media (max-width: 980px) {
    .contato-content {
        grid-template-columns: 1fr;
    }

    .contato-mapa {
        min-height: 320px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-social {
        flex-direction: row;
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .contato {
        padding: 72px 0;
    }

    .contato .section-header {
        margin-bottom: 30px;
    }

    .contato-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contato-card {
        padding: 18px;
    }

    .mapa-placeholder {
        min-height: 280px;
        border-radius: 18px;
        padding: 24px;
    }

    .footer {
        padding-top: 46px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-links {
        gap: 10px 16px;
    }

    .footer-social {
        grid-column: auto;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        margin-top: 28px;
    }

    .privacidade {
        padding: 28px 0 34px;
    }
}


/* ========== ETAPA 2.8 — RESPONSIVIDADE E EXPERIÊNCIA MOBILE ========== */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    -webkit-text-size-adjust: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a,
button,
input,
select,
textarea {
    touch-action: manipulation;
}

img,
video,
iframe {
    max-width: 100%;
}

.container {
    width: min(100% - 32px, 1200px);
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 900px) {
    section {
        padding: 82px 0;
    }

    .section-header {
        max-width: 680px;
        margin-bottom: 36px;
    }

    .section-header h2 {
        font-size: clamp(1.9rem, 5.5vw, 2.45rem);
        line-height: 1.12;
        text-wrap: balance;
    }

    .section-header p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero {
        padding-top: 124px;
    }

    .nav-menu {
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .nav-menu a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .hero-buttons .btn,
    .btn-whatsapp,
    .destaque-badge {
        min-height: 48px;
    }

    .galeria-grid,
    .servicos-grid,
    .destaques-grid,
    .beneficios-grid,
    .contato-info {
        min-width: 0;
    }

    .servico-card,
    .destaque-card,
    .beneficio-card,
    .contato-card,
    .faq-item {
        min-width: 0;
    }

    .sobre-content,
    .contato-content {
        min-width: 0;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1200px);
    }

    section {
        padding: 68px 0;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.10em;
    }

    h1,
    h2,
    h3,
    p,
    a,
    span {
        overflow-wrap: anywhere;
    }

    .header .container {
        width: min(100% - 20px, 1200px);
    }

    .logo {
        gap: 9px;
        min-width: 0;
        max-width: calc(100% - 58px);
    }

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

    .logo-text strong {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-toggle {
        flex: 0 0 44px;
    }

    .nav-menu {
        left: -2px;
        right: -2px;
        padding: 8px;
        border-radius: 15px;
    }

    .hero {
        padding-top: 112px;
        padding-bottom: 54px;
    }

    .hero-badge {
        max-width: 100%;
        justify-content: center;
        text-align: center;
        line-height: 1.4;
    }

    .hero-content h1 {
        max-width: 100%;
        word-break: normal;
    }

    .hero-content .hero-subtitle {
        max-width: 34rem;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn {
        min-height: 50px;
        font-size: 0.96rem;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        padding: 12px 4px;
    }

    .stat {
        padding: 0 5px;
    }

    .stat-number {
        font-size: 1.08rem;
    }

    .stat-label {
        font-size: 0.68rem;
    }

    .hero-image-caption {
        max-width: 92vw;
        text-align: center;
        line-height: 1.35;
    }

    .galeria-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 145px 145px;
        gap: 8px;
    }

    .galeria-item.grande {
        grid-column: 1 / -1;
    }

    .destaque-content,
    .servico-content {
        text-align: left;
    }

    .destaque-content .destaque-badge,
    .servico-content .destaque-badge {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .servico-image,
    .destaque-image {
        height: 235px;
    }

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

    .sobre-image img {
        min-height: 300px;
        max-height: 420px;
    }

    .feature {
        gap: 14px;
    }

    .feature-icon {
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
    }

    .faq-question {
        min-height: 56px;
    }

    .contato-card {
        align-items: flex-start;
    }

    .info-item {
        gap: 14px;
    }

    .info-item > div:last-child {
        min-width: 0;
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .mapa-placeholder {
        min-height: 250px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .footer-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .footer-social {
        width: 100%;
    }

    .footer-social a {
        width: 100%;
        min-height: 46px;
        justify-content: center;
    }

    .footer-bottom {
        gap: 10px;
    }

    .nav-whatsapp-icon {
        width: 50px;
        height: 50px;
        right: 12px;
        bottom: 12px;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 20px, 1200px);
    }

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

    .logo-text strong {
        font-size: 0.9rem;
    }

    .hero {
        padding-top: 108px;
    }

    .hero-content h1 {
        font-size: clamp(2.15rem, 11.5vw, 3rem);
    }

    .hero-content .hero-subtitle {
        font-size: 0.96rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px;
    }

    .stat {
        padding: 8px 0;
    }

    .stat + .stat::before {
        left: 12%;
        right: 12%;
        top: 0;
        bottom: auto;
        width: auto;
        height: 1px;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 210px);
    }

    .galeria-item.grande {
        grid-column: auto;
    }

    .servico-image,
    .destaque-image {
        height: 220px;
    }

    .container-imagens {
        gap: 2px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ========== ETAPA 2.9 — REVISÃO VISUAL COMPLETA ========== */

/* Ritmo geral das seções */
section {
    scroll-margin-top: 92px;
}

.section-header h2 {
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.section-header p {
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

/* Estados de foco consistentes */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
    outline: 3px solid rgba(212, 175, 55, 0.32);
    outline-offset: 3px;
}

/* Botões */
.btn,
.destaque-badge,
.btn-whatsapp {
    font-weight: 700;
    letter-spacing: 0.005em;
}

/* Cards */
.servico-card,
.destaque-card,
.beneficio-card,
.contato-card,
.faq-item {
    overflow: hidden;
}

/* Imagens */
.galeria-item img,
.destaque-image img,
.servico-image img,
.sobre-image img,
.hero-main-image {
    backface-visibility: hidden;
}

/* Ajuste fino entre seções claras */
.galeria + .destaques,
.destaques + .servicos,
.sobre + .depoimentos,
.depoimentos + .faq,
.faq + .contato {
    border-top: 1px solid rgba(212, 175, 55, 0.055);
}

/* Hero */
.hero-badge {
    letter-spacing: 0.015em;
}

.hero-stats {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Galeria */
.galeria-item {
    isolation: isolate;
}

/* Serviços e destaques */
.servico-content h3,
.destaque-content h3 {
    text-wrap: balance;
}

.servico-content p,
.destaque-content p {
    max-width: 46ch;
}

/* Benefícios */
.beneficio-card h3,
.feature h3 {
    text-wrap: balance;
}

/* FAQ */
.faq-question {
    line-height: 1.35;
}

/* Contato */
.info-item a:not(.btn) {
    color: inherit;
}

.info-item a:not(.btn):hover {
    color: var(--primary-dark);
}

/* Footer */
.footer-logo {
    letter-spacing: -0.02em;
}

/* Evita pequenas inconsistências acumuladas em telas médias */
@media (min-width: 901px) and (max-width: 1180px) {
    .container {
        width: min(100% - 40px, 1200px);
    }

    .nav-menu {
        gap: 18px;
    }

    .hero .container {
        gap: 44px;
    }
}

/* Refinamento final mobile */
@media (max-width: 640px) {
    section {
        scroll-margin-top: 78px;
    }

    .section-header h2 {
        line-height: 1.1;
    }

    .hero-badge,
    .section-eyebrow {
        white-space: normal;
    }

    .servico-content,
    .destaque-content,
    .contato-card,
    .feature {
        box-shadow: none;
    }

    .faq-item:hover,
    .servico-card:hover,
    .destaque-card:hover,
    .beneficio-card:hover,
    .contato-card:hover,
    .feature:hover {
        transform: none;
    }
}


/* ========== ETAPA 3.1 — PREPARAÇÃO DOS BOTÕES DE AGENDAMENTO ========== */
.js-agendar {
    cursor: pointer;
}


/* ========== ETAPA 3.2 — SERVIÇOS INTEGRADOS AO AGENDAMENTO ========== */
.servico-content .js-agendar,
.destaque-content .js-agendar {
    position: relative;
}

.servico-content .js-agendar::after,
.destaque-content .js-agendar::after {
    content: ' →';
    transition: transform 0.2s ease;
}

.servico-content .js-agendar:hover::after,
.destaque-content .js-agendar:hover::after {
    transform: translateX(2px);
}


/* ========== ETAPA 3.3 — HERO E DESTAQUES INTEGRADOS AO MEMARCA ========== */
.hero-cta-primary::after {
    content: ' →';
    margin-left: 2px;
    transition: transform 0.2s ease;
}

.hero-cta-primary:hover::after {
    transform: translateX(2px);
}

.destaques .js-agendar {
    white-space: nowrap;
}

@media (max-width: 640px) {
    .destaques .js-agendar {
        white-space: normal;
    }
}


/* ========== ETAPA 3.4 — CONTATO E FAQ INTEGRADOS AO MEMARCA ========== */
.contato-agendamento-memarca {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(255,255,255,0.94));
    border: 1px solid rgba(212,175,55,0.20);
    box-shadow: 0 10px 26px rgba(26,26,26,0.05);
}

.contato-agendamento-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--accent);
    color: var(--primary);
    font-weight: 800;
}

.contato-agendamento-memarca h3 {
    margin: 0 0 4px;
    font-size: 1.05rem;
}

.contato-agendamento-memarca p {
    margin: 0;
    line-height: 1.55;
}

.contato-agendamento-btn {
    white-space: nowrap;
    border-radius: 999px;
}

@media (max-width: 760px) {
    .contato-agendamento-memarca {
        grid-template-columns: auto 1fr;
    }

    .contato-agendamento-btn {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contato-agendamento-memarca {
        padding: 18px;
        gap: 12px;
    }

    .contato-agendamento-icon {
        width: 42px;
        height: 42px;
    }
}

/* ========== ETAPA 3.5 — URL DEFINITIVA CENTRALIZADA NO MEMARCA_CONFIG ========== */


/* ========== ETAPA 4.1 — PERFORMANCE DE IMAGENS E CARREGAMENTO ========== */

/* Evita trabalho de renderização fora da tela em seções pesadas. */
.galeria,
.destaques,
.servicos,
.beneficios,
.sobre,
.depoimentos,
.faq,
.contato {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

/* O Hero precisa renderizar imediatamente. */
.hero {
    content-visibility: visible;
}

/* Reserva espaço e evita pequenos saltos enquanto imagens carregam. */
.hero-bg-image,
.hero-main-image,
.galeria-item img,
.destaque-image img,
.servico-image img,
.sobre-image img {
    display: block;
}

/* Mantém proporções estáveis já definidas pelo layout. */
.hero-main-image,
.galeria-item img,
.destaque-image img,
.servico-image img,
.sobre-image img {
    object-fit: cover;
}


/* ========== ETAPA 4.6 — ACESSIBILIDADE ========== */

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 3000;
    padding: 10px 14px;
    border-radius: 10px;
    background: #111;
    color: #fff;
    font-weight: 700;
    transform: translateY(-140%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.nav-menu a[aria-current="page"] {
    color: var(--primary-dark);
}

.nav-menu a[aria-current="page"]::after {
    width: 100%;
}

.faq-answer[hidden] {
    display: block;
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden;
}

.faq-item.active .faq-answer[hidden] {
    display: block;
}

@media (prefers-contrast: more) {
    .btn,
    .destaque-badge,
    .contato-card,
    .faq-item,
    .servico-card,
    .destaque-card,
    .beneficio-card {
        border-width: 2px;
    }

    .hero-subtitle,
    .stat-label,
    .footer-content > p,
    .footer-bottom p {
        color: #ffffff;
    }
}

@media (forced-colors: active) {
    .btn,
    .destaque-badge,
    .nav-toggle,
    .faq-icon,
    .mapa-placeholder {
        forced-color-adjust: auto;
    }
}


/* ========== ETAPA 4.7 — CORE WEB VITALS E AJUSTES FINAIS ========== */

/* LCP: Hero estável e pronto para pintura imediata */
.hero-background {
    contain: layout paint;
}

.hero-bg-image {
    object-position: center;
}

/* CLS: proporções reservadas antes do carregamento das imagens */
.galeria-item {
    aspect-ratio: 4 / 3;
}

.galeria-item.grande {
    aspect-ratio: auto;
}

.destaque-image {
    aspect-ratio: 16 / 10;
}

.servico-image {
    aspect-ratio: 4 / 3;
}

.sobre-image {
    aspect-ratio: 6 / 5;
}

/* Evita mudança de layout em imagens */
img {
    vertical-align: middle;
}

/* INP: mantém transformações leves e evita efeitos caros */
.servico-card:hover,
.destaque-card:hover,
.beneficio-card:hover,
.contato-card:hover,
.feature:hover,
.footer-social a:hover,
.nav-whatsapp-icon:hover {
    backface-visibility: hidden;
}

/* Terceiros: reserva espaço estável para avaliações */
.depoimentos .elfsight-app-1f4ed263-e3fc-4e07-99df-0a23e3541d42 {
    min-height: 320px;
}

/* Reduz custo de pintura em elementos com blur em dispositivos móveis */
@media (max-width: 900px) {
    .header,
    .hero-badge,
    .hero-stats,
    .hero-cta-secondary,
    .hero-image-caption,
    .beneficio-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

@media (max-width: 640px) {
    .depoimentos .elfsight-app-1f4ed263-e3fc-4e07-99df-0a23e3541d42 {
        min-height: 260px;
    }

    .galeria-item,
    .galeria-item.grande,
    .destaque-image,
    .servico-image,
    .sobre-image {
        aspect-ratio: auto;
    }
}


/* =====================================================
   AJUSTES VISUAIS APÓS REVISÃO — IMAGENS DO USUÁRIO
   ===================================================== */

/* Seção Sobre inspirada no layout aprovado */
.sobre {
    position: relative;
    padding: clamp(38px, 4vw, 56px) 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 22%, rgba(204, 148, 69, 0.055), transparent 34%),
        #fffdf9;
}

.sobre .container {
    max-width: 1320px;
}

.sobre .section-header {
    margin-bottom: 20px;
}

.sobre .section-header h2 {
    color: #b85d68;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.25rem, 3.35vw, 3.45rem);
    font-weight: 400;
    letter-spacing: -0.035em;
    white-space: nowrap;
}

.sobre-title-divider {
    display: grid;
    grid-template-columns: minmax(50px, 1fr) auto minmax(50px, 1fr);
    align-items: center;
    gap: 14px;
    width: min(620px, 72vw);
    margin: 10px auto 0;
    color: #d29a3f;
    font-size: 1.65rem;
    line-height: 1;
}

.sobre-title-divider::before,
.sobre-title-divider::after {
    content: '';
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(210, 154, 63, 0.95));
}

.sobre-title-divider::after {
    background: linear-gradient(90deg, rgba(210, 154, 63, 0.95), transparent);
}

.sobre-content {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    gap: clamp(30px, 3.2vw, 50px);
    align-items: stretch;
}

.sobre-image {
    min-height: 0;
    height: 100%;
    aspect-ratio: auto;
    overflow: hidden;
    border: 0;
    border-radius: 22px;
    box-shadow: 0 14px 28px rgba(59, 39, 24, 0.2);
}

.sobre-image::after {
    display: none;
}

.sobre-image img,
.sobre-image .sobre-img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    max-height: 415px;
    object-fit: cover;
    object-position: center;
}

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

.sobre-text {
    position: relative;
    margin: 0 0 13px;
    padding: 0 0 15px;
    border-bottom: 1px solid rgba(210, 154, 63, 0.48);
}

.sobre-text::after {
    content: '♡';
    position: absolute;
    left: 50%;
    transform: translate(-50%, -2px);
    padding: 0 12px;
    color: #d29a3f;
    background: #fffdf9;
    font-size: 1.35rem;
}

.sobre-text p {
    margin: 0 0 11px;
    color: #3f3a37;
    font-size: clamp(0.9rem, 1vw, 1rem);
    line-height: 1.55;
}

.sobre-text p:last-child {
    margin-bottom: 0;
}

.sobre-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.sobre .feature {
    display: grid;
    grid-template-columns: 58px minmax(150px, 0.65fr) minmax(190px, 1fr);
    align-items: center;
    gap: 16px;
    min-height: 64px;
    padding: 7px 14px;
    border: 1px solid rgba(210, 154, 63, 0.3);
    border-radius: 15px;
    background: rgba(255, 253, 249, 0.72);
    box-shadow: none;
}

.sobre .feature:hover {
    transform: translateY(-2px);
    border-color: rgba(210, 154, 63, 0.55);
    box-shadow: 0 8px 20px rgba(64, 42, 25, 0.06);
}

.sobre .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    color: #cc9336;
    background: #fff8eb;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
}

.sobre .feature h3 {
    margin: 0;
    color: #171411;
    font-size: 0.96rem;
    line-height: 1.35;
}

.sobre .feature p {
    margin: 0;
    color: #55504b;
    font-size: 0.84rem;
    line-height: 1.5;
}

.sobre-numeros {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 16px;
    padding: 10px 16px 12px;
    border: 1px solid rgba(210, 154, 63, 0.28);
    border-radius: 16px;
    background: rgba(255, 253, 249, 0.72);
}

.sobre-numero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 92px;
    padding: 0 12px;
    text-align: center;
}

.sobre-numero-icon {
    min-height: 27px;
    color: #cc9336;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.65rem;
    line-height: 1;
}

.sobre-numero strong {
    margin-top: 5px;
    color: #b85d68;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    line-height: 1;
}

.sobre-numero > span:last-child {
    margin-top: 7px;
    color: #45403c;
    font-size: 0.9rem;
}

.sobre-decor {
    position: absolute;
    top: 54px;
    width: clamp(82px, 9vw, 138px);
    height: clamp(82px, 9vw, 138px);
    pointer-events: none;
}

.sobre-decor svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
    fill: none;
    stroke: rgba(210, 154, 63, 0.43);
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sobre-decor-left {
    left: 0;
    transform: rotate(-7deg);
}

.sobre-decor-right {
    right: 0;
    transform: scaleX(-1) rotate(-7deg);
}

@media (max-width: 1050px) {
    .sobre-content {
        grid-template-columns: 1fr;
    }

    .sobre-image {
        height: min(62vw, 540px);
    }

    .sobre-image img,
    .sobre-image .sobre-img {
        min-height: 0;
        max-height: none;
    }

    .sobre-decor {
        display: none;
    }
}

@media (max-width: 720px) {
    .sobre {
        padding: 70px 0;
    }

    .sobre .section-header {
        margin-bottom: 32px;
    }

    .sobre .section-header h2 {
        font-size: clamp(2rem, 10vw, 2.8rem);
        white-space: normal;
    }

    .sobre-title-divider {
        width: min(360px, 88vw);
        margin-top: 14px;
    }

    .sobre-content {
        gap: 28px;
    }

    .sobre-image {
        width: 100%;
        height: clamp(280px, 76vw, 390px);
        border-radius: 17px;
    }

    .sobre .feature {
        grid-template-columns: 52px 1fr;
        gap: 12px 14px;
        padding: 13px 14px;
    }

    .sobre .feature-icon {
        grid-row: 1 / span 2;
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .sobre .feature h3 br {
        display: none;
    }

    .sobre .feature p {
        grid-column: 2;
    }

    .sobre-numeros {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 10px;
    }

    .sobre-numero {
        min-height: 132px;
        border-bottom: 1px solid rgba(210, 154, 63, 0.18);
    }

    .sobre-numero:nth-child(odd) {
        border-right: 1px solid rgba(210, 154, 63, 0.18);
    }

    .sobre-numero:nth-child(n+3) {
        border-bottom: 0;
    }
}

@media (max-width: 420px) {
    .sobre-text p {
        font-size: 0.96rem;
        line-height: 1.66;
    }

    .sobre .feature {
        grid-template-columns: 46px 1fr;
    }

    .sobre .feature-icon {
        width: 44px;
        height: 44px;
    }

    .sobre-numero {
        padding: 0 6px;
    }

    .sobre-numero > span:last-child {
        font-size: 0.82rem;
    }
}

/* 1. WhatsApp flutuante totalmente visível */
/* 2. Hero com proporções mais próximas da versão anterior */
.hero {
    min-height: 104vh;
    padding: 155px 0 115px;
    align-items: center;
}

.hero .container {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    gap: clamp(72px, 8vw, 120px);
    align-items: center;
}

.hero-content {
    max-width: 610px;
}

.hero-badge {
    margin-bottom: 28px;
}

.hero-content h1 {
    max-width: 13ch;
    font-size: clamp(3rem, 4.1vw, 4.3rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
    margin-bottom: 28px;
}

.hero-content .hero-subtitle {
    max-width: 590px;
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    line-height: 1.82;
    margin-bottom: 34px;
}

.hero-buttons {
    gap: 16px;
    margin-bottom: 46px;
}

.hero-stats {
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    gap: 44px;
}

.stat {
    min-width: 0;
    padding: 0;
    text-align: left;
}

.stat + .stat::before {
    display: none;
}

.stat-number {
    font-size: 1.55rem;
}

.stat-label {
    margin-top: 4px;
    display: block;
}

.hero-image-container {
    width: min(100%, 405px);
    max-width: 405px;
}

.hero-image-caption {
    margin-top: 4px;
}

/* 3. Contato simples, vertical, sem mapa grande */
.contato {
    padding: 90px 0;
}

.contato .section-header {
    margin-bottom: 42px;
}

.contato-agendamento-memarca {
    max-width: 920px;
    margin: 0 auto 36px;
}

.contato-lista-simples {
    width: min(100%, 720px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contato-linha {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    padding: 20px 22px;
    border-radius: 16px;
    background: transparent;
    border: 0;
    color: var(--text);
}

.contato-linha + .contato-linha {
    border-top: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 0;
}

.contato-linha .info-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
}

.contato-linha-conteudo {
    min-width: 0;
}

.contato-linha h4 {
    margin: 1px 0 5px;
    font-size: 1.05rem;
}

.contato-linha p {
    margin: 0;
    line-height: 1.65;
}

.contato-linha .btn-whatsapp {
    width: fit-content;
    margin-top: 12px;
    padding: 10px 18px;
}

.contato-endereco-link {
    transition: background 0.2s ease;
}

.contato-endereco-link:hover {
    background: rgba(212, 175, 55, 0.055);
}

.contato-mapa-link {
    display: inline-block;
    margin-top: 5px;
    color: var(--primary-dark);
    font-size: 0.86rem;
    font-weight: 600;
}

/* O mapa grande deixa de fazer parte do layout */
.contato-mapa,
.mapa-placeholder {
    display: none !important;
}

/* 4. Rodapé restaurado para o estilo clássico/centralizado */
.footer.footer-classico {
    padding: 58px 0 30px;
    background: #1a1a1a;
}

.footer-content-classico {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

.footer-content-classico .footer-logo {
    margin-bottom: 14px;
    font-size: 1.55rem;
    color: var(--primary);
}

.footer-content-classico > p {
    max-width: none;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.78);
}

.footer-content-classico .footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 25px;
}

.footer-social-classico {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 18px;
    width: auto !important;
    margin-bottom: 34px;
}

.footer-social-classico a {
    width: 42px !important;
    min-width: 42px !important;
    min-height: 42px;
    height: 42px;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    font-size: 1.35rem;
}

.footer-social-classico a:hover {
    background: rgba(212, 175, 55, 0.08);
}

.footer-bottom-classico {
    width: 100%;
    margin-top: 0;
    padding-top: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom-classico p {
    margin: 0;
    text-align: center;
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding: 135px 0 90px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-content h1 {
        max-width: 13ch;
        font-size: clamp(2.7rem, 8vw, 4rem);
    }

    .hero-stats {
        justify-content: center;
        gap: 36px;
    }

    .stat {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 120px 0 78px;
    }

    .hero-content h1 {
        font-size: clamp(2.35rem, 11vw, 3.2rem);
        line-height: 1.05;
        margin-bottom: 24px;
    }

    .hero-content .hero-subtitle {
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .hero-buttons {
        margin-bottom: 34px;
    }

    .hero-stats {
        gap: 0;
        width: 100%;
        padding: 0;
    }

    .contato {
        padding: 72px 0;
    }

    .contato-agendamento-memarca {
        margin-bottom: 28px;
    }

    .contato-lista-simples {
        width: 100%;
    }

    .contato-linha {
        padding: 18px 8px;
        gap: 14px;
    }

    .footer-content-classico .footer-links {
        flex-wrap: wrap;
        gap: 14px 22px;
    }
}


/* =====================================================
   WHATSAPP FLUTUANTE — POSIÇÃO FINAL
   ===================================================== */
.whatsapp-float {
    position: fixed !important;
    right: 20px !important;
    bottom: 20px !important;
    top: auto !important;
    left: auto !important;
    width: 62px;
    height: 62px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 9999 !important;
    border-radius: 50%;
    overflow: visible !important;
}

.whatsapp-float .nav-whatsapp-icon {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 56px !important;
    height: 56px !important;
    max-width: 56px !important;
    margin: 0 !important;
    display: block;
    object-fit: contain;
}

@media (max-width: 640px) {
    .whatsapp-float {
        right: 14px !important;
        bottom: 14px !important;
        width: 58px;
        height: 58px;
    }

    .whatsapp-float .nav-whatsapp-icon {
        width: 52px !important;
        height: 52px !important;
        max-width: 52px !important;
    }
}


/* =====================================================
   WHATSAPP FLUTUANTE — FIXO NA VIEWPORT
   ===================================================== */
body > .whatsapp-float {
    position: fixed !important;
    right: 20px !important;
    bottom: 20px !important;
    top: auto !important;
    left: auto !important;
    width: 62px !important;
    height: 62px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 99999 !important;
    border-radius: 50%;
    overflow: visible !important;
}

body > .whatsapp-float > .nav-whatsapp-icon {
    position: static !important;
    inset: auto !important;
    width: 58px !important;
    height: 58px !important;
    max-width: 58px !important;
    margin: 0 !important;
    display: block !important;
    object-fit: contain;
}

/* =====================================================
   CABEÇALHO — IDENTIDADE E SEÇÃO ATIVA
   ===================================================== */
.logo-mark {
    position: relative;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    background:
        radial-gradient(circle at 35% 28%, #49302f 0%, #211b1c 48%, #121112 100%);
    color: #deb056;
    border: 1px solid #c7923f;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.04em;
    text-shadow: 0 1px 8px rgba(222, 176, 86, 0.3);
    box-shadow:
        inset 0 0 0 1px rgba(255, 231, 180, 0.08),
        0 5px 14px rgba(30, 21, 20, 0.16);
}

.logo-mark::after {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(222, 176, 86, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
    color: #d94f61;
}

.nav-menu a::after,
.nav-menu a[aria-current="page"]::after {
    background: #d94f61;
}

@media (max-width: 420px) {
    .logo-mark {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 0.9rem;
    }
}

/* =====================================================
   CONTATO — COLUNAS PREMIUM
   ===================================================== */
.contato {
    padding: clamp(68px, 7vw, 96px) 0;
}

.contato .container {
    max-width: 1320px;
}

.contato .section-header {
    margin-bottom: 34px;
}

.contato-grid-premium {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.contato-grid-premium::before {
    content: '';
    position: absolute;
    inset: -18px;
    z-index: 0;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 252, 246, 0.94), rgba(255, 255, 255, 0.62));
    border: 1px solid rgba(204, 147, 54, 0.12);
    box-shadow: 0 22px 55px rgba(60, 43, 26, 0.055);
}

.contato-lista-simples {
    display: contents;
}

.contato-agendamento-memarca,
.contato-linha,
.contato-linha + .contato-linha {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    min-width: 0;
    min-height: 282px;
    margin: 0;
    padding: 25px 22px 22px;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(204, 147, 54, 0.2);
    border-radius: 20px;
    background:
        radial-gradient(circle at 90% 5%, rgba(217, 79, 97, 0.075), transparent 32%),
        rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 28px rgba(55, 39, 24, 0.055);
    color: var(--text);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contato-agendamento-memarca::after,
.contato-linha::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 58px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d94f61);
}

.contato-agendamento-memarca:hover,
.contato-linha:hover {
    transform: translateY(-5px);
    border-color: rgba(204, 147, 54, 0.42);
    box-shadow: 0 18px 38px rgba(55, 39, 24, 0.09);
}

.contato-agendamento-icon,
.contato-linha .info-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    margin-bottom: 20px;
    border: 1px solid rgba(204, 147, 54, 0.25);
    border-radius: 50%;
    background: linear-gradient(145deg, #fff9ec, #f9edd5);
    color: #c58b2f;
    font-size: 1.35rem;
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.52);
}

.contato-agendamento-memarca h3,
.contato-linha h4 {
    margin: 0 0 9px;
    color: #191512;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.15rem;
    line-height: 1.25;
}

.contato-agendamento-memarca p,
.contato-linha p {
    margin: 0;
    color: #625a54;
    font-size: 0.9rem;
    line-height: 1.62;
}

.contato-linha-conteudo {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
}

.contato-agendamento-btn,
.contato-linha .btn-whatsapp {
    width: 100%;
    min-height: 43px;
    margin: auto 0 0;
    padding: 10px 14px;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.86rem;
}

.contato-linha .btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #19b958);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.18);
}

.contato-mapa-link {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding-top: 17px;
    color: #b87e23;
    font-size: 0.84rem;
    font-weight: 700;
}

.contato-mapa-link::after {
    content: ' →';
    margin-left: 5px;
}

@media (max-width: 1050px) {
    .contato-grid-premium {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contato-agendamento-memarca,
    .contato-linha,
    .contato-linha + .contato-linha {
        min-height: 255px;
    }
}

@media (max-width: 620px) {
    .contato-grid-premium {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contato-grid-premium::before {
        inset: -10px;
        border-radius: 24px;
    }

    .contato-agendamento-memarca,
    .contato-linha,
    .contato-linha + .contato-linha {
        min-height: 0;
        padding: 21px 19px;
    }

    .contato-agendamento-icon,
    .contato-linha .info-icon {
        margin-bottom: 15px;
    }

    .contato-agendamento-btn,
    .contato-linha .btn-whatsapp,
    .contato-mapa-link {
        margin-top: 18px;
    }
}

/* Refinamento final: agendamento horizontal + informações integradas */
.contato-grid-premium {
    display: block;
    width: min(100%, 960px);
    margin: 0 auto;
}

.contato-grid-premium::before {
    display: none;
}

.contato-agendamento-memarca,
.contato-agendamento-memarca:hover {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-height: 0;
    margin: 0 0 25px;
    padding: 20px 22px;
    overflow: visible;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.94));
    box-shadow: 0 10px 26px rgba(26, 26, 26, 0.05);
    transform: none;
}

.contato-agendamento-memarca::after {
    display: none;
}

.contato-agendamento-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    margin: 0;
    border: 0;
    border-radius: 14px;
    background: var(--accent);
    color: var(--primary);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: none;
}

.contato-agendamento-memarca h3 {
    margin: 0 0 4px;
    font-family: inherit;
    font-size: 1.05rem;
}

.contato-agendamento-memarca p {
    font-size: 1rem;
    line-height: 1.55;
}

.contato-agendamento-btn {
    width: auto;
    min-height: 0;
    margin: 0;
    padding: 14px 28px;
    font-size: 1rem;
}

.contato-lista-simples {
    position: relative;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr 1.15fr;
    width: 100%;
    margin: 0 auto;
    padding: 5px 0;
    gap: 0;
    border-top: 1px solid rgba(204, 147, 54, 0.2);
    border-bottom: 1px solid rgba(204, 147, 54, 0.2);
}

.contato-linha,
.contato-linha + .contato-linha,
.contato-linha:hover {
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr);
    align-items: start;
    gap: 13px;
    min-height: 130px;
    margin: 0;
    padding: 23px 22px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.contato-linha + .contato-linha {
    border-left: 1px solid rgba(204, 147, 54, 0.18);
}

.contato-linha::after {
    display: none;
}

.contato-linha .info-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    margin: 0;
    border: 1px solid rgba(204, 147, 54, 0.26);
    border-radius: 13px;
    background: #fff8eb;
    box-shadow: none;
}

.contato-linha .info-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #c58b2f;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contato-linha .info-icon-whatsapp {
    border-color: rgba(37, 211, 102, 0.25);
    background: rgba(37, 211, 102, 0.08);
}

.contato-linha .info-icon-whatsapp svg {
    fill: #25d366;
    stroke: none;
}

.contato-linha h4 {
    margin: 0 0 7px;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.35;
}

.contato-whatsapp-numero {
    display: inline-flex;
    color: #178e46;
    font-size: 0.97rem;
    font-weight: 700;
    line-height: 1.4;
    border-bottom: 1px solid rgba(23, 142, 70, 0.28);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.contato-whatsapp-numero:hover {
    color: #0f7135;
    border-color: #0f7135;
}

.contato-mapa-link {
    margin-top: 8px;
    padding: 0;
}

.contato-horarios {
    display: grid;
    gap: 4px;
    width: 100%;
}

.contato-horarios span {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #625a54;
    font-size: 0.82rem;
    line-height: 1.5;
}

.contato-horarios b {
    color: #4b4540;
    font-weight: 600;
}

.contato-horarios em {
    color: #766e68;
    font-style: normal;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .contato-lista-simples {
        grid-template-columns: 1fr;
        border-bottom: 0;
    }

    .contato-linha,
    .contato-linha + .contato-linha,
    .contato-linha:hover {
        min-height: 0;
        padding: 20px 10px;
        border-left: 0;
        border-bottom: 1px solid rgba(204, 147, 54, 0.18);
    }
}

@media (max-width: 760px) {
    .contato-agendamento-memarca,
    .contato-agendamento-memarca:hover {
        grid-template-columns: auto 1fr;
    }

    .contato-agendamento-btn {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contato-agendamento-memarca,
    .contato-agendamento-memarca:hover {
        padding: 18px;
        gap: 12px;
    }

    .contato-horarios span {
        font-size: 0.8rem;
    }
}

@media (max-width: 640px) {
    body > .whatsapp-float {
        right: 14px !important;
        bottom: 14px !important;
        width: 58px !important;
        height: 58px !important;
    }

    body > .whatsapp-float > .nav-whatsapp-icon {
        width: 54px !important;
        height: 54px !important;
        max-width: 54px !important;
    }
}
