/* ========================================
   CSS VARIABLES & RESET
======================================== */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E2C97E;
  --gold-dark:   #9B7A2F;
  --green:       #91B5A3;
  --green-light: #BDD4C9;
  --green-pale:  #EBF3EF;
  --green-mid:   #6E9E8C;
  --rose:        #DDB7AC;
  --rose-light:  #F0D8D2;
  --rose-pale:   #FAF3F1;
  --white:       #FFFFFF;
  --off-white:   #FAFAF8;
  --text-dark:   #2C2C2C;
  --text-mid:    #5A5A5A;
  --text-light:  #8A8A8A;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.12);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   32px;
  --radius-xl:   60px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }

/* ========================================
   TYPOGRAPHY HELPERS
======================================== */
.cinzel   { font-family: 'Cinzel Decorative', serif; }
.garamond { font-family: 'Cormorant Garamond', serif; }

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.25;
  color: var(--text-dark);
  margin-top: 0.4em;
}
.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-mid);
  font-style: italic;
  margin-top: 0.6em;
  max-width: 520px;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 28px rgba(201,168,76,0.50);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(145,181,163,0.35);
}
.btn-green:hover {
  background: var(--green-mid);
  box-shadow: 0 6px 28px rgba(145,181,163,0.50);
  transform: translateY(-2px);
}

/* ========================================
   HEADER / NAV
======================================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(145,181,163,0.2);
  transition: box-shadow var(--transition);
}
#header.scrolled { box-shadow: var(--shadow-sm); }

/* Logo ocupa toda a altura do header */
.logo {
  display: flex;
  align-items: center;
}
.header-logo-img {
  height: 68px;
  width: auto;
  border-radius: 6px;
  display: block;
}

.logo-name {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.15rem;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}
.logo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--green-mid);
  letter-spacing: 0.18em;
}

nav { display: flex; align-items: center; gap: 2rem; }
nav a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  transition: color var(--transition);
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--transition);
}
nav a:hover { color: var(--green-mid); }
nav a:hover::after { transform: scaleX(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  align-self: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 900px) {
  nav.nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    gap: 0;
    border-top: 1px solid rgba(145,181,163,0.2);
    box-shadow: var(--shadow-md);
  }
  nav.nav-links.open { display: flex; }
  nav.nav-links a {
    padding: 1.1rem 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  nav.nav-links .btn { margin: 1rem 0 1.4rem; }
  .hamburger { display: flex; }
}

/* ========================================
   HERO
======================================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 5%;
  padding-top: 72px;
}
#hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55%;
  height: 110%;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--rose-pale) 60%);
  border-radius: 40% 0 0 40%;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-text { animation: fadeUp 0.9s ease both; }

.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-style: normal;
  color: var(--green-mid);
}
.hero-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 2rem;
  max-width: 460px;
}

/* Logo + CRFa abaixo da descrição */
.hero-bottom-info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 4rem;
}

.hero-bottom-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-logo-bottom {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(145,181,163,0.3);
  box-shadow: var(--shadow-sm);
}
.hero-crfa {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-style: italic;
}

.hero-nome {
  display: block;
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  font-weight: 400;
}

/* Hero image — maior, ocupa quase todo o espaço */
.hero-visual {
  display: flex;
  justify-content: center;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: linear-gradient(135deg, var(--green-light), var(--rose-light));
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  z-index: 0;
  opacity: 0.55;
}
.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

@media (max-width: 840px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 1.5rem; }
  .hero-bottom-info { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-img-wrap { max-width: 300px; margin: 0 auto; }
}

/* ========================================
   FAIXA DE ATENDIMENTO
======================================== */
.atend-strip {
  background: var(--green);
  padding: 1.4rem 5%;
}
.atend-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.atend-strip-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 2.5rem;
  color: var(--white);
}
.atend-strip-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.atend-strip-item span { font-size: 0.75rem; opacity: 0.85; letter-spacing: 0.05em; }
.atend-strip-icon { font-size: 1.4rem; flex-shrink: 0; }
.atend-strip-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .atend-strip-item { padding: 0.6rem 1.2rem; }
  .atend-strip-divider { display: none; }
}

/* ========================================
   SECTION WRAPPER
======================================== */
.section { padding: 6rem 5%; max-width: 1200px; margin: 0 auto; }
.section-full { padding: 6rem 5%; }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ========================================
   DIVIDER
======================================== */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.8rem 0;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--green));
}
.gold-divider::after { background: linear-gradient(to left, transparent, var(--green)); }
.gold-divider span { font-size: 0.6rem; color: var(--gold); }
.center .gold-divider { max-width: 220px; margin: 0.8rem auto; }

/* ========================================
   SOBRE
======================================== */
.sobre-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.sobre-section::before {
  content: '';
  position: absolute;
  top: -10%; left: -5%;
  width: 50%;
  height: 120%;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--rose-pale) 60%);
  border-radius: 0 40% 40% 0;
  z-index: 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-photo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  /* Empurra a foto um pouco para baixo */
  padding-top: 2rem;
}

.about-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, var(--green-light), var(--rose-light));
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  z-index: 0;
  opacity: 0.55;
}

.about-photo--round {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 3/4 !important;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55% !important;
  background: linear-gradient(160deg, var(--green-pale) 0%, var(--rose-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: none !important;
  position: relative;
  z-index: 1;
}
.about-photo--round img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}


.about-name-badge {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.about-name-badge strong {
  display: block;
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  font-weight: 400;
}

.about-name-badge span {
  display: block;

  font-size: 0.88rem;
  color: var(--green-mid);
  letter-spacing: 0.1em;
  font-style: italic;
}

.about-text h2 { 
  margin-bottom: 1rem; 
}

.about-bio {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-variant-numeric: normal;
  font-feature-settings: "lnum" 1;
}

.bio-green {
  color: var(--green-mid);
  font-weight: 600;
  font-style: normal;
}

@media (max-width: 840px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-wrap { align-items: center; }
  .sobre-section::before { width: 100%; height: 50%; top: 0; border-radius: 0 0 40% 40%; }
}

/* ========================================
   PÚBLICO ALVO — novo layout de texto
======================================== */
.publico-section {
  background: linear-gradient(160deg, var(--green-pale) 0%, var(--white) 100%);
}
.publico-inner { max-width: 1200px; margin: 0 auto; }

.publico-texto {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.publico-texto p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* Texto em verde nos destaques */
.publico-green {
  color: var(--green-mid);
  font-weight: 600;
  font-style: normal;
}

.publico-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 0.5rem;
}
.publico-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.publico-destaque {
  font-family: 'Cinzel Decorative', serif !important;
  font-size: 1rem !important;
  color: var(--gold) !important;
  text-align: center;
  padding: 1rem;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

/* ========================================
   ACCORDION — ÁREAS DE ATUAÇÃO
======================================== */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 4rem;
}

.accordion-item {
  border: 1px solid rgba(145,181,163,0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.accordion-item:hover {
  box-shadow: var(--shadow-md);
}

.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.accordion-btn:hover {
  background: var(--green-pale);
}
.accordion-item.open .accordion-btn {
  background: var(--green-pale);
  border-bottom: 1px solid rgba(145,181,163,0.2);
}

.accordion-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green-pale), var(--rose-pale));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(145,181,163,0.2);
}

.accordion-title {
  flex: 1;
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}

.accordion-arrow {
  font-size: 0.7rem;
  color: var(--green-mid);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.accordion-item.open .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.8rem;
}
.accordion-item.open .accordion-body {
  max-height: 2000px;
  padding: 1.4rem 1.8rem;
}

.accordion-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.accordion-body p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
  .accordion-title { font-size: 0.78rem; }
  .accordion-btn { padding: 1.1rem 1.2rem; }
}

/* ========================================
   NOSSO ESPAÇO
======================================== */
.espaco-section { background: var(--off-white); }
.espaco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  gap: 1rem;
  margin-top: 1rem;
}
.espaco-card--large { grid-column: span 2; grid-row: span 2; }
.espaco-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: var(--white);
}
.espaco-card:hover { transform: scale(1.015); box-shadow: var(--shadow-md); }
.espaco-img-wrap { position: relative; width: 100%; height: 100%; min-height: 200px; }
.espaco-card--large .espaco-img-wrap { min-height: 420px; }
.espaco-img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 2;
}
.espaco-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(44,44,44,0.7), transparent);
  color: white;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 1rem 1.2rem 0.8rem;
  font-weight: 500;
  z-index: 3;
  text-transform: uppercase;
}
.espaco-note {
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
  font-size: 1rem;
  color: var(--green-mid);
}
@media (max-width: 700px) {
  .espaco-grid { grid-template-columns: 1fr 1fr; }
  .espaco-card--large { grid-column: span 2; grid-row: span 1; }
  .espaco-card--large .espaco-img-wrap { min-height: 220px; }
}
@media (max-width: 480px) {
  .espaco-note { font-size: 0.85rem; padding: 0 1rem; }
  .espaco-note-end { display: block; margin-top: 0.3rem; }
}
.mobile-br { display: none; }

@media (max-width: 480px) {
  .mobile-br { display: block; }
}

/* ========================================
   DEPOIMENTOS
======================================== */
.depoimentos-section { background: var(--white); }
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(145,181,163,0.18);
  position: relative;
  transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-source {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.testi-source--insta { color: #bc1888; }
.testi-quote {
  font-size: 2.5rem;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 0.6rem;
  font-family: Georgia, serif;
}
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600; color: white; text-transform: uppercase; flex-shrink: 0;
}
.testi-name { font-size: 0.88rem; font-weight: 500; color: var(--text-dark); }
.testi-role { font-size: 0.76rem; color: var(--text-light); }

.testi-mais { text-align: center; margin-top: 2rem; }
.testi-mais-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--green-mid);
  border-bottom: 1px solid rgba(110,158,140,0.3);
  transition: color var(--transition);
}
.testi-mais-link:hover { color: var(--gold); }

/* ========================================
   CONTATO
======================================== */
.contato-section { background: var(--off-white); }

/* Card estilo cartão de visita */
.contact-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--green-light) 100%);
  border-radius: var(--radius-md);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 0;
  align-items: center;
}

/* Lado esquerdo */
.contact-card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-right: 2rem;
}
.contact-card-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,168,76,0.3);
  box-shadow: var(--shadow-sm);
}
.contact-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.contact-card-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.contact-card-item svg { color: var(--gold); flex-shrink: 0; fill: var(--gold); }
.contact-card-item a {
  color: var(--text-mid);
  transition: color var(--transition);
}
.contact-card-item a:hover { color: var(--gold); }

/* Linha divisória dourada */
.contact-card-divider {
  width: 1px;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  flex-shrink: 0;
}

/* Lado direito */
.contact-card-right {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding-left: 2rem;
}
.contact-card-location {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contact-card-location-label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.contact-card-address {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.contact-card-address strong {
  font-size: 1rem;
  color: var(--text-dark);
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.contact-card-address span {
  font-size: 0.82rem;
  color: var(--text-mid);
}

/* Botão agendar */
.contact-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  transition: var(--transition);
  width: fit-content;
}
.contact-card-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201,168,76,0.5);
}

@media (max-width: 840px) {
  .contact-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  .contact-card-left { padding-right: 0; align-items: center; text-align: center; }
  .contact-card-divider { width: 80%; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
  .contact-card-right { padding-left: 0; align-items: center; text-align: center; }
  .contact-card-address { align-items: center; }
  .form-row { grid-template-columns: 1fr; }
}

/* ========================================
   FOOTER
======================================== */
footer {
  background: #1e2d28;
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 5% 2rem;
}

.footer-brand .logo {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.2rem;
  line-height: 1.4;
}
.footer-brand .logo-name {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-family: 'Cinzel Decorative', serif;
}
.footer-brand .logo-title {
  display: block;
  color: var(--green-light);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.78rem;
}
.logo-crfa {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(145,181,163,0.15);
}
.footer-brand p { font-size: 0.85rem; margin-top: 1rem; line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.75rem;
  color: var(--green-light);
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--green-light); }
.social-links { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(145,181,163,0.1);
  border: 1px solid rgba(145,181,163,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: var(--transition);
}
.social-link:hover { background: var(--green); border-color: var(--green); color: white; }
.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-info-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.footer-info-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.5;
}
.footer-info-list a { 
  color: rgba(255,255,255,0.6); 
  transition: color var(--transition); 
}

.footer-info-list a:hover { 
  color: var(--green-light); }

.footer-info-icon { 
  font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; 
}

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ========================================
   WHATSAPP FLOATING BUTTON
======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  display: flex; align-items: center; gap: 0.7rem;
  background: #25D366; color: white;
  border-radius: 100px;
  padding: 0.9rem 1.4rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  transition: var(--transition);
  animation: pulse-green 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #1ebe57;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
  animation: none;
}

.whatsapp-float svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,0.7); }
}

@media (max-width: 500px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 0.9rem; border-radius: 50%; width: 54px; height: 54px; justify-content: center; }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { 
  opacity: 1; transform: translateY(0); 
}


/* ========================================
   RESPONSIVO MOBILE — AJUSTES GERAIS
======================================== */

/* Hero mobile */
@media (max-width: 840px) {
  .hero-bottom-info { justify-content: center; flex-wrap: wrap; }
  .hero-title { text-align: center; }
  .hero-desc { text-align: center; }
}

/* Sobre mobile */
@media (max-width: 840px) {
  .about-photo--round { max-width: 300px; margin: 0 auto; }
  .about-text { text-align: center; }
  .about-text .gold-divider { margin: 0.8rem auto; }
  .about-text .btn { display: inline-flex; }
}

/* Serviços subtitle — remove nowrap no mobile */
@media (max-width: 768px) {
  .section-subtitle[style*="white-space:nowrap"],
  .section-subtitle[style*="white-space: nowrap"] {
    white-space: normal !important;
    font-size: 0.95rem !important;
  }
}

/* Accordion mobile */
@media (max-width: 600px) {
  .accordion-icon { width: 36px; height: 36px; font-size: 1.2rem; }
  .accordion-body { padding: 0 1rem; }
  .accordion-item.open .accordion-body { padding: 1rem; }
}

/* Contato card mobile */
@media (max-width: 600px) {
  .contact-card { padding: 1.5rem; }
  .contact-card-btn { font-size: 0.75rem !important; padding: 0.75rem 1.2rem !important; }
}

/* Footer mobile */
@media (max-width: 700px) {
  .footer-brand { text-align: center; align-items: center; }
  .footer-brand .logo { align-items: center; }
  .social-links { justify-content: center; }
}

/* Espaço mobile */
@media (max-width: 480px) {
  .espaco-note { font-size: 0.85rem; padding: 0 1rem; }
  .espaco-note-end { display: block; margin-top: 0.3rem; }
}

/* Público alvo mobile */
@media (max-width: 600px) {
  .publico-texto { padding: 0 0.5rem; }
  .publico-destaque { font-size: 0.85rem !important; }
}