/* ==========================================================================
   DRA. RAYSSA MALHEIROS - ENDOCRINOLOGIA E METABOLOGIA
   Design System & Stylesheet
   ========================================================================== */

/* Importação de Fontes Google */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- VARIÁVEIS DO DESIGN SYSTEM --- */
:root {
  /* Paleta Extraída do Manual da Marca */
  --gold-primary: #C5A059;
  --gold-light: #E6CA85;
  --gold-dark: #8A6C45;
  --taupe: #B49883;
  --bege: #E8E1D7;
  --bege-light: #FBF9F5;
  --bg-subtle: #F6F3EF;
  
  --text-dark: #2A211C;
  --text-body: #4A3E38;
  --text-muted: #786960;
  
  --white: #FFFFFF;
  --black: #1A1412;
  
  /* Fontes */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Sombras & Efeitos */
  --shadow-sm: 0 4px 15px rgba(138, 108, 69, 0.05);
  --shadow-md: 0 10px 30px rgba(138, 108, 69, 0.08);
  --shadow-lg: 0 20px 40px rgba(138, 108, 69, 0.12);
  --shadow-gold: 0 12px 30px rgba(197, 160, 89, 0.25);
  
  --border-gold: 1px solid rgba(197, 160, 89, 0.25);
  --border-subtle: 1px solid rgba(138, 108, 69, 0.12);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 90px;
}

/* --- RESET & BASICS --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bege-light);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* --- REUTILIZÁVEIS E TIPOGRAFIA --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.2;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(197, 160, 89, 0.1);
  border: var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-title span {
  color: var(--gold-dark);
  font-style: italic;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 48px auto;
}

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

/* --- BOTÕES & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #28E16D 0%, #159E8E 100%);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(197, 160, 89, 0.4);
  filter: brightness(1.05);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  border: var(--border-gold);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--white);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* --- HEADER / NAVIGATION --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: rgba(251, 249, 245, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(138, 108, 69, 0.08);
}

.header.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  border-bottom-color: rgba(197, 160, 89, 0.15);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

.header.scrolled .logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--gold-dark);
}

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

.header-cta {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-dark);
}

/* --- HERO SECTION --- */
.hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(230, 202, 133, 0.18) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(180, 152, 131, 0.12) 0%, transparent 40%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: var(--border-gold);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-primary);
}

.hero-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.trust-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}

/* Hero Media Column */
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

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

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: var(--border-gold);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: float 4s ease-in-out infinite alternate;
}

.floating-card-1 {
  bottom: 30px;
  left: -20px;
}

.floating-card-2 {
  top: 40px;
  right: -20px;
  animation-delay: -2s;
}

.floating-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.floating-text-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.floating-text-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* --- SOBRE A MÉDICA --- */
.about {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--text-dark);
  color: var(--gold-light);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: var(--border-gold);
}

.about-experience-badge h4 {
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 2px;
}

.about-experience-badge p {
  font-size: 0.85rem;
  color: var(--bege);
}

.about-text p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--text-body);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 36px;
}

.feature-box {
  background: var(--bege-light);
  padding: 20px;
  border-radius: var(--radius-md);
  border: var(--border-subtle);
  transition: var(--transition);
}

.feature-box:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.feature-box h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--gold-dark);
}

.feature-box p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* --- TRATAMENTOS & ESPECIALIDADES --- */
.treatments {
  padding: 100px 0;
  background: var(--bege-light);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.treatment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: var(--border-subtle);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 160, 89, 0.4);
}

.treatment-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(230, 202, 133, 0.2), rgba(197, 160, 89, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 24px;
}

.treatment-icon svg {
  width: 28px;
  height: 28px;
}

.treatment-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.treatment-card p {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.treatment-list {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed rgba(138, 108, 69, 0.15);
}

.treatment-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.treatment-list li::before {
  content: '✓';
  color: var(--gold-dark);
  font-weight: bold;
}

/* --- PARA QUEM É A CONSULTA --- */
.for-who {
  padding: 100px 0;
  background: var(--white);
}

.for-who-wrapper {
  background: linear-gradient(135deg, #2A211C 0%, #1A1412 100%);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  border: var(--border-gold);
}

.for-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.symptom-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(230, 202, 133, 0.15);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.symptom-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.symptom-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.symptom-card p {
  font-size: 0.98rem;
  color: var(--bege);
  line-height: 1.5;
}

/* --- COMO FUNCIONA A CONSULTA --- */
.journey {
  padding: 100px 0;
  background: var(--bege-light);
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 48px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: var(--border-subtle);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-primary);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(197, 160, 89, 0.3);
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* --- DEPOIMENTOS / DIFERENCIAIS --- */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bege-light);
  border-radius: var(--radius-md);
  padding: 32px;
  border: var(--border-subtle);
  position: relative;
}

.testimonial-stars {
  color: #F5A623;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.testimonial-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.author-info h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- LOCALIZAÇÃO & ATENDIMENTO --- */
.location {
  padding: 100px 0;
  background: var(--bege-light);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: var(--border-gold);
}

.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.location-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.location-info-item h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.location-info-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.location-media {
  height: 100%;
  display: flex;
  align-items: center;
}

.location-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
}

/* --- FAQ ACCORDION --- */
/* --- FAQ SECTION --- */
.faq-section,
.faq {
  padding: 100px 0;
  background: var(--white);
}

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

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

.faq-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  background: rgba(197, 160, 89, 0.12);
  border-radius: 50px;
  margin-bottom: 12px;
}

.faq-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.faq-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bege-light);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(197, 160, 89, 0.4);
}

.faq-item[open] {
  border-color: var(--gold-primary);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 16px;
}

.faq-question::-webkit-details-marker,
.faq-question::marker {
  display: none;
  content: "";
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.15);
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background-color: var(--gold-dark);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon {
  background: var(--gold-primary);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background-color: var(--white);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item[open] .faq-answer-wrapper {
  grid-template-rows: 1fr;
}

.faq-answer-content {
  overflow: hidden;
}

.faq-answer-content p {
  margin: 0;
  padding: 0 24px 22px 24px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-body);
}

@media (max-width: 640px) {
  .faq-section,
  .faq {
    padding: 60px 0;
  }
  .faq-question {
    padding: 18px 20px;
    font-size: 1rem;
  }
  .faq-answer-content p {
    padding: 0 20px 18px 20px;
    font-size: 0.92rem;
  }
}

/* --- BANNER CTA FINAL --- */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 36px auto;
}

/* --- FOOTER --- */
.footer {
  background: #1A1412;
  color: #C2B4AB;
  padding: 60px 0 30px 0;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 380px;
}

.footer-title {
  color: var(--bege);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: var(--font-serif);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: #C2B4AB;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.82rem;
  color: #8C7D73;
}

/* --- FLOATING WHATSAPP BUTTON --- */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-media img {
    height: 420px;
  }
  
  .steps-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 32px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .header-cta {
    display: none;
  }
  
  .steps-timeline {
    grid-template-columns: 1fr;
  }
  
  .for-who-wrapper {
    padding: 40px 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-card-1, .floating-card-2 {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 12px;
  }
}

/* --- ANIMAÇÕES REVEAL NO SCROLL --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
