/* ============================================
   VARIÁVEIS E RESET
============================================ */
:root {
  --primary:       #4FAFBE;
  --primary-dark:  #3A9BAE;
  --primary-deep:  #2B7A8A;
  --primary-light: #EEF7F9;
  --accent:        #C97B72;
  --accent-dark:   #B06860;
  --accent-light:  #F9EDEB;
  --dark:          #0F2230;
  --dark-2:        #1A3A4A;
  --dark-3:        #2B6475;
  --bg:            #FAF8F5;
  --white:         #FFFFFF;
  --text:          #1E2835;
  --text-muted:    #6B7A8D;
  --border:        #E2EDF1;
  --shadow-sm:     0 2px 12px rgba(30, 40, 53, 0.07);
  --shadow-md:     0 4px 24px rgba(79, 175, 190, 0.14);
  --shadow-lg:     0 12px 48px rgba(30, 40, 53, 0.12);
  --radius:        16px;
  --radius-sm:     8px;
  --radius-pill:   50px;
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:         1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================
   ANIMAÇÕES
============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   COMPONENTES REUTILIZÁVEIS
============================================ */
.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 0.97rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 500;
  border: none;
  transition: var(--transition);
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(79, 175, 190, 0.38);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79, 175, 190, 0.44);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(201, 123, 114, 0.38);
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* ============================================
   HEADER
============================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 24px rgba(0,0,0,0.07);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img {
  height: 80px;
  width: auto;
  transition: var(--transition);
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-desktop a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-desktop a:hover {
  color: var(--primary-dark);
  background: var(--primary-light);
}
.nav-cta { margin-left: 10px; }

#header:not(.scrolled) .nav-desktop a { color: rgba(255,255,255,0.85); }
#header:not(.scrolled) .nav-desktop a:hover { background: rgba(255,255,255,0.12); color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
#header:not(.scrolled) .hamburger span { background: white; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--primary-dark); }
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

/* ============================================
   SEÇÃO: HERO
============================================ */
#inicio {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 45%, var(--dark-3) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-deco {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.15;
  pointer-events: none;
}
.hero-deco-1 {
  width: 560px; height: 560px;
  background: var(--accent);
  top: -120px; right: 5%;
}
.hero-deco-2 {
  width: 420px; height: 420px;
  background: var(--primary);
  bottom: -160px; left: -80px;
}
.hero-deco-3 {
  width: 200px; height: 200px;
  background: var(--primary-light);
  top: 40%; right: 42%;
  opacity: 0.06;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 128px 28px 80px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-content { color: var(--white); }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
}
.hero-pill-dot {
  width: 7px; height: 7px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 22px;
  color: var(--white);
}
.hero-headline em {
  font-style: italic;
  color: rgba(255,255,255,0.78);
}
.hero-underline { position: relative; display: inline; }
.hero-underline::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 2px;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 38px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat span { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.hero-stat-div {
  width: 1px; height: 38px;
  background: rgba(255,255,255,0.15);
  margin: 0 20px;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.hero-photo-frame {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 32px 80px rgba(0,0,0,0.36), 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,74,0.4) 0%, transparent 50%);
}
.hero-badge {
  position: absolute;
  bottom: 28px;
  left: -16px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  z-index: 2;
}
.hero-badge-icon {
  width: 48px; height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #3aaf6a;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.hero-badge-text strong { display: block; font-size: 0.84rem; font-weight: 600; color: var(--text); }
.hero-badge-text span { font-size: 0.73rem; color: var(--text-muted); }
.hero-badge-accent {
  position: absolute;
  top: 28px;
  right: -22px;
  background: var(--accent);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(201,123,114,0.45);
  display: flex;
  align-items: center;
  gap: 7px;
  z-index: 2;
}

/* ============================================
   SEÇÃO: BENEFÍCIOS
============================================ */
#beneficios { padding: 96px 0; background: var(--white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-icon {
  width: 54px; height: 54px;
  background: var(--primary-light);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--primary-dark);
}
.benefit-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.benefit-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* ============================================
   PHOTO BREAK — CONSULTÓRIO
============================================ */
.photo-break { height: 400px; position: relative; overflow: hidden; }
.photo-break img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 8s ease;
}
.photo-break:hover img { transform: scale(1.04); }
.photo-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,34,48,0.82) 0%, rgba(15,34,48,0.45) 55%, rgba(15,34,48,0.1) 100%);
  display: flex;
  align-items: center;
  padding: 0 10%;
}
.photo-break-quote { max-width: 520px; }
.photo-break-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 18px;
}
.photo-break-quote blockquote::before {
  content: '"';
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.5em;
  color: var(--primary);
  margin-right: 4px;
}
.photo-break-quote cite { font-size: 0.85rem; color: rgba(255,255,255,0.62); font-style: normal; }

/* ============================================
   SEÇÃO: SOBRE
============================================ */
#sobre { padding: 96px 0; background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual { position: relative; }
.about-photo-bg {
  position: absolute;
  width: 80%; height: 80%;
  background: var(--primary-light);
  border-radius: 20px;
  bottom: -28px; left: -28px;
  z-index: 0;
}
.about-photo-frame {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about-exp-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--border);
}
.about-exp-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1;
}
.about-exp-badge span { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }
.about-content .section-sub { margin-bottom: 0; }
.about-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 18px; }
.about-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0 32px;
}
.about-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.about-check-icon {
  width: 20px; height: 20px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.about-check span { font-size: 0.83rem; color: var(--text); font-weight: 500; line-height: 1.4; }

/* ============================================
   SEÇÃO: COMO FUNCIONA
============================================ */
#como-funciona {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  position: relative;
  overflow: hidden;
}
#como-funciona::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(79,175,190,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(201,123,114,0.06) 0%, transparent 50%);
}
#como-funciona .label { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
#como-funciona .section-title { color: var(--white); }
#como-funciona .section-sub { color: rgba(255,255,255,0.62); }
.steps-wrap { position: relative; z-index: 1; }
.steps-connector {
  position: absolute;
  top: 40px;
  left: calc(16.66% + 18px);
  right: calc(16.66% + 18px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.25), rgba(255,255,255,0.08), rgba(255,255,255,0.25));
}
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 40px 28px 32px;
  text-align: center;
  transition: var(--transition);
}
.step-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); border-color: rgba(255,255,255,0.18); }
.step-num {
  width: 68px; height: 68px;
  margin: 0 auto 22px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  position: relative; z-index: 1;
}
.step-card-icon { display: flex; justify-content: center; margin-bottom: 16px; color: rgba(255,255,255,0.5); }
.step-card h3 { font-family: 'Playfair Display', serif; font-size: 1.12rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.step-card p { font-size: 0.87rem; color: rgba(255,255,255,0.62); line-height: 1.75; }

/* ============================================
   SEÇÃO: DEPOIMENTOS
============================================ */
#depoimentos { padding: 96px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { color: #F5A421; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.78;
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.testimonial-name strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); }
.testimonial-name span { font-size: 0.77rem; color: var(--text-muted); }

/* ============================================
   SEÇÃO: FAQ
============================================ */
#faq { padding: 96px 0; background: var(--bg); }
.faq-container { max-width: 700px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
}
.faq-trigger h4 { font-size: 0.95rem; font-weight: 500; color: var(--text); line-height: 1.45; }
.faq-item.open .faq-trigger h4 { color: var(--primary-dark); font-weight: 600; }
.faq-arrow {
  width: 30px; height: 30px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary-dark);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-item.open .faq-body { max-height: 320px; }
.faq-body-inner { padding: 0 22px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }

/* ============================================
   SEÇÃO: CONTATO / CTA FINAL
============================================ */
#contato { padding: 96px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.contact-info-wrap .section-sub { max-width: none; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary-dark);
}
.contact-detail-text strong { display: block; font-size: 0.84rem; font-weight: 600; color: var(--text); margin-bottom: 1px; line-height: 1.3; }
.contact-detail-text span,
.contact-detail-text a { font-size: 0.86rem; color: var(--text-muted); line-height: 1.3; }
.contact-quote {
  margin-top: 32px;
  padding: 20px 22px;
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.contact-quote p { font-size: 0.88rem; color: var(--text-muted); font-style: italic; line-height: 1.7; }
.contact-quote cite { font-size: 0.8rem; font-weight: 600; color: var(--primary-dark); margin-top: 8px; display: block; font-style: normal; }

/* ============================================
   FORMULÁRIO
============================================ */
.form-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
}
.form-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--text); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #BCCAD3; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }

/* Campo com erro */
.form-group input.field-error,
.form-group select.field-error,
.form-group textarea.field-error {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}
.field-error-msg {
  display: none;
  font-size: 0.75rem;
  color: var(--accent-dark);
  margin-top: 4px;
}
.field-error-msg.visible { display: block; }

/* Honeypot — invisível para humanos */
.form-hp { display: none !important; }

.btn-submit { width: 100%; padding: 15px; font-size: 0.97rem; margin-top: 4px; justify-content: center; }
.form-note { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 12px; }
.form-note a { color: var(--primary-dark); font-weight: 500; }

/* Mensagem de sucesso */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  gap: 14px;
}
.form-success.visible { display: flex; }
.form-success-icon {
  width: 60px; height: 60px;
  background: #e8f8f0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #27ae60;
}
.form-success h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text); }
.form-success p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; max-width: 300px; }

/* ============================================
   FOOTER
============================================ */
footer { background: var(--dark); color: rgba(255,255,255,0.62); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo-img { height: 80px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.72; margin-bottom: 22px; max-width: 280px; }
.social-links { display: flex; gap: 9px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.footer-col h4 {
  font-size: 0.8rem; font-weight: 600;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col ul a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.84rem;
  margin-bottom: 11px;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom a { color: var(--primary); transition: var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================
   WHATSAPP FLUTUANTE
============================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  color: white;
}
.wa-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6); }

/* ============================================
   RESPONSIVO
============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { gap: 48px; }
}
@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 100px; }
  .hero-visual { order: 2; }
  .hero-photo-wrap { max-width: 280px; margin: 0 auto; }
  .hero-badge { left: 0; bottom: -16px; }
  .hero-badge-accent { right: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 340px; margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-connector { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .about-checks { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .photo-break-overlay { padding: 0 6%; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .photo-break { height: 300px; }
}
