/* =====================================================
  INSTITUTO FERNANDA SERRA
   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 ========== */
/* Personalize as cores principais do tema aqui */
:root {
  /* Cores principais - tons de rosa e lilás para estética */
  --primary: #ad68d2; /* Lilás principal */
  --primary-dark: #8742a8; /* Lilás escuro */
  --secondary: #c394d6; /* Rosa claro */
  --accent: #f8edeb; /* Bege rosado */

  /* Cores de fundo */
  --bg: #faf7fc; /* Fundo principal (quase branco) */
  --bg-alt: #f1e5f6; /* Fundo alternativo (lilás bem claro) */

  /* Cores de texto */
  --text: #2d2631; /* Texto principal (quase preto) */
  --text-light: #6f6675; /* Texto secundário (cinza) */
  --white: #ffffff; /* Branco puro */

  /* Efeitos */
  --shadow: 0 4px 20px rgba(135, 66, 168, 0.12);
  --shadow-hover: 0 10px 35px rgba(157, 78, 221, 0.22);

  /* 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;
}

/* ========== 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(--white);
  box-shadow: 0 4px 15px rgba(157, 78, 221, 0.4);
}

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

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

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

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

.btn-whatsapp:hover {
  background: var(--shadow-hover);
  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 */
.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: var(--transition);
}

/* ========== 6. HERO SECTION ========== */
/* Hero com imagem de fundo em tela cheia */
.hero {
  padding: 110px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Container da imagem de fundo */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

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

/* Overlay sobre a imagem para melhor legibilidade */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 42, 50, 0.8) 0%,
    rgba(45, 42, 50, 0.4) 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;
}

/* Textos do hero em branco */
.hero h1 {
  color: var(--white);
}

.hero .hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.hero .stat-number {
  color: var(--secondary);
}

.hero .stat-label {
  color: rgba(255, 255, 255, 0.8);
}

/* 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;
}

/* Container da imagem principal 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(157, 78, 221, 0.4);
  border: 5px solid rgba(255, 255, 255, 0.2);
}

/* Imagem circular do hero */
.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: float 3s ease-in-out infinite;
}

/* Animação de flutuação */
@keyframes float {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

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

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

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

.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;
}

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

.sobre-image img {
  width: 100%;
  height: 100%;
  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: 35px;
  margin-top: 40px;
}

.feature {
  displauy: flex;
  align-items: center;
  gap: 22px;
}

.feature-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;

  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;

  background: linear-gradient(135deg, #c86cff 0%, #a855f7 55%, #7c3aed 100%);
  box-shadow: 0 12px 28px rgba(168, 85, 247, 0.28);
  transition: 0.35s;
}

.feature-icon i {
  color: #ffff
  font-size: 1.8rem;
}

.feature:hover .feature-icon {
  transform:translateY(-5px) scale(1.08);
}

.feature-text h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  color: #2b2340
}

.feature-text p {
  margin: 0;
  line-height: 1.7;
  color: #666;
}

/* ========== GALERIA ========== */
.galeria {
  background: var(--bg);
  padding: 70px 0;
}

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

/* ITEM GRANDE */
.galeria-item.grande {
  grid-column: span 2;
  grid-row: span 2;
}

/* ITEM DA GALERIA */
.galeria-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(157, 78, 221, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.4s ease,
    box-shadow 0.45s ease;
}

/* IMAGENS */
.galeria-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    filter 0.45s ease;
}

/* HOVER */
.galeria-item:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 2px rgba(157, 78, 221, 0.95),
    0 0 10px rgba(157, 78, 221, 0.95),
    0 0 25px rgba(157, 78, 221, 0.85),
    0 0 45px rgba(157, 78, 221, 0.70),
    0 0 75px rgba(157, 78, 221, 0.50),
    0 15px 35px rgba(157, 78, 221, 0.20);
  z-index: 2;
}

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

/* FEATURES */
.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. 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 com imagem */
.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);
}

/* Imagem do card de serviço */
.servico-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

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

.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: 15px;
}

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

/* ========== 10. SEÇÃO RESULTADOS ========== */
.destaques {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

/* =====================================================
   CABEÇALHO
   ===================================================== */

.destaques .section-header {
  max-width: 750px;
  margin: 0 auto 50px;
  text-align: center;
}

.destaques .section-subtitle {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* =====================================================
   LISTA DE RESULTADOS
   ===================================================== */

.resultados-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* =====================================================
   BLOCO DE RESULTADO
   ===================================================== */

.resultado-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  align-items: stretch;
  width: 100%;
  min-height: 0;
  background:
    linear-gradient(
      135deg,
      rgba(157, 78, 221, 0.055),
      rgba(255, 255, 255, 0.98) 55%
    );
  border: 1px solid rgba(157, 78, 221, 0.18);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(157, 78, 221, 0.06),
    0 8px 25px rgba(157, 78, 221, 0.08),
    0 18px 45px rgba(157, 78, 221, 0.06);
  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    background 0.45s ease;
}

/* =====================================================
   GLOW DECORATIVO
   ===================================================== */

.resultado-card::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 35%;
  width: 360px;
  height: 360px;
  background: rgba(157, 78, 221, 0.16);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.5s ease;
}

/* =====================================================
   HOVER DO BLOCO
   ===================================================== */

.resultado-card:hover {
  transform: translateY(-7px);
  border-color: rgba(157, 78, 221, 0.42);
  background:
    linear-gradient(
      135deg,
      rgba(157, 78, 221, 0.09),
      rgba(255, 255, 255, 1) 60%
    );
  box-shadow:
    0 0 0 1px rgba(157, 78, 221, 0.18),
    0 0 25px rgba(157, 78, 221, 0.22),
    0 0 55px rgba(157, 78, 221, 0.14),
    0 22px 50px rgba(157, 78, 221, 0.14);
}

.resultado-card:hover::before {
  opacity: 1;
}

/* =====================================================
   ÁREA DAS FOTOS
   ===================================================== */

.resultado-fotos {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
  min-height: 0;
  padding: 22px;
  align-items: center;
  z-index: 1;
}

/* =====================================================
   CADA FOTO
   ===================================================== */

.resultado-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 600 / 485;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(157, 78, 221, 0.14);
  border-radius: 20px;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(157, 78, 221, 0.03);
  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

/* =====================================================
   IMAGENS
   ===================================================== */

.resultado-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 20px;
  background: #ffffff;
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

/* =====================================================
  HOVER NAS FOTOS
   ===================================================== */

.resultado-card:hover .resultado-photo {
  border-color: rgba(157, 78, 221, 0.28);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.08),
    0 0 18px rgba(157, 78, 221, 0.10);
}

.resultado-card:hover .resultado-photo img {
  transform: scale(1.015);
}

/* =====================================================
   LABEL ANTES / DEPOIS
   ===================================================== */

.photo-label {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
  border: 1px solid rgba(157, 78, 221, 0.12);
  border-radius: 30px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.12);
  z-index: 3;
  pointer-events: none;
}

/* DEPOIS */

.resultado-photo:nth-child(2) .photo-label {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* =====================================================
   INFORMAÇÕES
   ===================================================== */

.resultado-info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px 40px;
  border-left: 1px solid rgba(157, 78, 221, 0.14);
  z-index: 2;
  opacity: 0.52;
  transform: translateX(14px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

/* =====================================================
   INFORMAÇÕES NO HOVER
   ===================================================== */

.resultado-card:hover .resultado-info {
  opacity: 1;
  transform: translateX(0);
}

/* =====================================================
   LINHA DECORATIVA
   ===================================================== */

.resultado-info::before {
  content: "";
  width: 45px;
  height: 3px;
  margin-bottom: 22px;
  background: var(--primary);
  border-radius: 10px;
  opacity: 0.7;
  transition:
    width 0.45s ease,
    opacity 0.45s ease;
}

.resultado-card:hover .resultado-info::before {
  width: 75px;
  opacity: 1;
}

/* =====================================================
   CATEGORIA
   ===================================================== */

.resultado-category {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;

  text-transform: uppercase;
}

/* =====================================================
   TÍTULO
   ===================================================== */

.resultado-info h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.2;
}

/* =====================================================
   DESCRIÇÃO
   ===================================================== */

.resultado-info p {
  max-width: 360px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ========== 11. SEÇÃO BENEFÍCIOS ========== */
.beneficios {
  background: radial-gradient(circle at top left,#d9b7ff 0%,transparent 35%),radial-gradient(circle at bottom right,#8f5bff 0%,transparent 30%), linear-gradient(135deg,
#b56de6,
#a45ce8,
#8f49d9
);
}

/* 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(255, 255, 255, 0.1);
  backdrop-filter: blur(10px); 
  padding: 45px 30px;
  border-radius: var(--radius);
  text-align: center; 
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.beneficio-card:hover {
  background: rgba(255, 255, 255, 0.2); 
  transform:translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0,0,0,.15),
        0 0 35px rgba(255,255,255,.15);
}

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

.beneficio-card p {
  max-width: 220px;
  color: rgba(255, 255, 255, 0.9); 
  margin: 0;
  line-height: 1.8;
  font-size: 0.95rem;
}

.beneficio-icon{
    width:70px;
    height:70px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        rgba(255,255,255,.18),
        rgba(255,255,255,.08)
    );
    border:1px solid rgba(255,255,255,.15);
    font-size:28px;
    color:#fff;
}

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

.depoimentos .section-header h2 {
  white-space: nowrap;
}

/* Grid dos depoimentos */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.depoimento-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(181, 106, 232, 0.12);
  border-radius: var(--radius);
  padding: 30px;
  min-height: 280px;
  box-shadow: var(--shadow);
  overflow: hidden;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

/* Reflexo de luz */
.depoimento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.65),
    transparent
  );

  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
}

/* Hover */
.depoimento-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow:
    0 0 0 1px rgba(181, 106, 232, 0.25),
    0 15px 40px rgba(135, 66, 168, 0.20);
}

.depoimento-card:hover::before {
  left: 140%;
}

/* Conteúdo */
.depoimento-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Ícone das aspas */
.depoimento-aspas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
  );
  color: var(--white);
  border-radius: 50%;
  font-size: 0.9rem;
}

/* Texto */
.depoimento-card p {
  margin: 0;

  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

/* Área que aparece no hover */
.depoimento-detalhes {
  margin-top: 25px;
  padding-top: 18px;

  border-top: 1px solid rgba(181, 106, 232, 0.15);

  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.5s ease;
}

/* Revelação no hover */
.depoimento-card:hover .depoimento-detalhes {
  opacity: 1;
  transform: translateY(0);
}

/* Pequeno título */
.detalhes-label {
  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 1.5px;

  color: var(--primary-dark);
}

/* Procedimento */
.depoimento-detalhes strong {
  font-size: 0.95rem;
  font-weight: 700;

  color: var(--text);
}

/* ========== 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);
}

/* 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;
}

.btn-whatsapp {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 12px;
  padding: 12px 20px;

  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary)
  );

  color: var(--white);
  font-weight: 600;
  text-decoration: none;

  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);

  overflow: hidden;
  isolation: isolate;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;

  width: 60%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  z-index: -1;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: var(--white);
}

.btn-whatsapp:hover::before {
  left: 140%;
}

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

.contato-mapa {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}

.contato-mapa iframe {
  width: 100%;
  min-height: 350px;
  height: 100%;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

/* ========== 15. FOOTER ========== */
.footer {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 50%,
    var(--secondary) 100%
  );
  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;
}

.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(--white);
}

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

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* 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(--white);
}

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

/* Tablets e telas médias */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    gap: 20px;
    box-shadow: var(--shadow);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
  }

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

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .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);
  }

  .hero {
    min-height: auto;
  }

  .hero .container {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    text-align: center;
  }

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

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

  .hero-visual {
    order: -1;
  }

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

  .sobre-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .sobre-image {
    width: 100%;
    max-width: 720px;
    max-height: 450px;
    margin: 0 auto;
  }

  .galeria-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 220px;
  }

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

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

  .resultado-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .resultado-info {
    padding: 32px;
    border-top: 1px solid rgba(157, 78, 221, 0.14);
    border-left: 0;
    opacity: 1;
    transform: none;
  }

  .resultado-info p {
    max-width: none;
  }

  .depoimento-detalhes {
    opacity: 1;
    transform: none;
  }

  .contato-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
}

/* Celulares */
@media (max-width: 768px) {
  .container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .logo {
    max-width: calc(100% - 48px);
    font-size: 1.15rem;
    line-height: 1.2;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero .container {
    gap: 30px;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

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

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

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

  section {
    padding: 60px 0;
  }

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

  .section-header h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

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

  .sobre-image {
    max-height: none;
  }

  .sobre-image img {
    width: 100%;
    height: auto;
  }

  .sobre-features {
    gap: 28px;
    margin-top: 32px;
  }

  .galeria-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: auto;
    gap: 15px;
  }

  .galeria-item,
  .galeria-item.grande {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4 / 3;
  }

  .servicos-grid,
  .beneficios-grid,
  .depoimentos-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .servico-card,
  .beneficio-card {
    width: 100%;
    min-width: 0;
  }

  .resultados-list {
    gap: 28px;
  }

  .resultado-card {
    border-radius: 22px;
  }

  .resultado-fotos {
    gap: 10px;
    padding: 14px;
  }

  .resultado-photo,
  .resultado-photo img {
    border-radius: 14px;
  }

  .photo-label {
    top: 8px;
    left: 8px;
    padding: 5px 9px;
    font-size: 0.58rem;
  }

  .resultado-info {
    padding: 26px 22px;
  }

  .resultado-info::before {
    margin-bottom: 16px;
  }

  .depoimentos .section-header h2 {
    white-space: normal;
  }

  .depoimento-card {
    min-height: 0;
  }

  .faq-question {
    gap: 16px;
    padding: 18px 20px;
    font-size: 0.95rem;
    text-align: left;
  }

  .faq-icon {
    flex-shrink: 0;
  }

  .faq-item.active .faq-answer {
    padding: 18px 20px;
  }

  .contato-info,
  .info-item {
    min-width: 0;
  }

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

  .btn-whatsapp {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .contato-mapa iframe {
    width: 100%;
    min-height: 350px;
    height: 350px;
  }

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

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

  h2 {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .header {
    padding: 12px 0;
  }

  .nav-menu {
    top: 65px;
    max-height: calc(100vh - 65px);
    padding: 24px 16px;
  }

  .logo {
    font-size: 1rem;
  }

  .hero {
    padding: 90px 0 50px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-badge {
    padding: 7px 12px;
    font-size: 0.78rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

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

  .floating-badge {
    bottom: 28px;
    padding: 8px 14px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

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

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

  section {
    padding: 50px 0;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

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

  .feature {
    gap: 14px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }

  .feature-text h3 {
    font-size: 1.15rem;
  }

  .galeria-grid {
    gap: 10px;
  }

  .servico-content,
  .depoimento-card {
    padding: 22px;
  }

  .beneficio-card {
    padding: 35px 22px;
  }

  .resultado-fotos {
    gap: 7px;
    padding: 10px;
  }

  .photo-label {
    top: 6px;
    left: 6px;
    padding: 4px 7px;
    letter-spacing: 0.5px;
  }

  .resultado-info {
    padding: 22px 18px;
  }

  .resultado-info h3 {
    font-size: 1.35rem;
  }

  .faq-question,
  .faq-item.active .faq-answer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .info-item {
    gap: 14px;
  }

  .info-icon {
    font-size: 1.6rem;
  }

  .contato-mapa iframe {
    min-height: 300px;
    height: 300px;
  }

  .footer {
    padding-top: 50px;
  }

  .footer-logo {
    font-size: 1.4rem;
  }
}

