/* =============================================
   GISELE AZEVEDO PSICOLOGIA — style.css
   Design: Digital Bloom
   ============================================= */

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

:root {
  /* Nova paleta */
  --coral:       #fe9870;   /* primário — coral vibrante */
  --coral-light: #ffb89a;
  --coral-pale:  #fff1ec;
  --pink:        #e665a7;   /* secundário — rosa quente */
  --pink-dark:   #b8407e;
  --pink-light:  #f0a0cc;
  --salmon:      #e67765;   /* acento quente */
  --rose:        #fd7c7f;   /* acento rosa-vermelho */
  --magenta:     #fd70fe;   /* acento magenta */

  /* Aliases usados no CSS (mantém nomes antigos para não precisar reescrever tudo) */
  --gold:       var(--coral);
  --gold-light: var(--coral-light);
  --gold-pale:  var(--coral-pale);
  --wine:       var(--pink);
  --wine-dark:  var(--pink-dark);
  --wine-light: var(--pink-light);

  --cream:      #FFF8F6;
  --cream-2:    #FDEEE9;
  --white:      #FFFFFF;
  --text-dark:  #1A1518;
  --text-mid:   #4A3840;
  --text-light: #7A636B;
  --border:     rgba(254,152,112,0.22);
  --shadow-sm:  0 2px 12px rgba(230,101,167,0.08);
  --shadow-md:  0 6px 32px rgba(230,101,167,0.14);
  --shadow-lg:  0 16px 60px rgba(230,101,167,0.18);
  --radius:     14px;
  --radius-lg:  24px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.8;
}

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 90px 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--salmon) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(254,152,112,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--salmon) 0%, var(--rose) 100%);
  box-shadow: 0 6px 28px rgba(254,152,112,0.50);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--wine);
  border: 1.5px solid var(--wine);
}
.btn-secondary:hover {
  background: var(--wine);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--wine-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ---- DIVIDER ORNAMENT ---- */
.ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.ornament-line {
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.ornament-diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  border-radius: 1px;
}

/* ---- HEADER ---- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}

#header.scrolled {
  background: rgba(255,248,246,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(230,101,167,0.10);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.logo-img {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

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

.nav-link {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover { color: var(--wine); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--wine); }
.nav-link.active::after { width: 100%; }

.nav-cta {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--wine);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,248,246,0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-nav .nav-link {
  font-size: 1.4rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--wine-dark);
}
.mobile-nav .btn {
  margin-top: 12px;
  font-size: 1rem;
  padding: 16px 40px;
}

/* ---- WHATSAPP FAB ---- */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(37,211,102,0.60);
  animation: none;
}
.whatsapp-fab svg { width: 30px; height: 30px; fill: white; }

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 28px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff1ec 0%, #fde8ef 40%, #fce8fd 100%);
  z-index: 0;
}

.hero-bg-circle-1 {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,152,112,0.12) 0%, transparent 70%);
  top: -180px;
  right: -120px;
  z-index: 0;
}

.hero-bg-circle-2 {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,101,167,0.10) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content { }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254,152,112,0.12);
  border: 1px solid rgba(254,152,112,0.30);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.hero-badge span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

.hero-title {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.18;
  margin-bottom: 1.4rem;
  color: var(--text-dark);
}
.hero-title em {
  font-style: normal;
  color: var(--wine);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.4rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-trust-text {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
}
.hero-trust-icon { color: var(--gold); font-size: 1.3rem; flex-shrink: 0; }

/* Hero Image */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--cream-2) 0%, #f7d8e8 100%);
}

.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-light);
}
.hero-img-placeholder svg { width: 64px; height: 64px; opacity: 0.35; }
.hero-img-placeholder p { font-size: 0.8rem; opacity: 0.6; text-align: center; padding: 0 24px; }

.hero-img-badge {
  position: absolute;
  bottom: 24px;
  left: -18px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 210px;
}
.hero-img-badge-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--wine) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-img-badge-icon svg { width: 20px; height: 20px; fill: white; }
.hero-img-badge-text { font-size: 0.72rem; line-height: 1.35; }
.hero-img-badge-text strong { display: block; font-size: 0.8rem; color: var(--wine-dark); }

.hero-accent-ring {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 130px;
  height: 130px;
  border: 2px solid rgba(254,152,112,0.30);
  border-radius: 50%;
  z-index: 0;
}
.hero-accent-ring-2 {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(230,101,167,0.15);
  border-radius: 50%;
  z-index: 0;
}

/* ---- SECTION: FILOSOFIA ---- */
#filosofia {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.filosofia-bg-pattern {
  position: absolute;
  top: 0; right: 0;
  width: 480px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-pale) 0%, transparent 100%);
  opacity: 0.4;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.filosofia-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.filosofia-quote {
  position: relative;
  padding: 40px 44px;
  background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine) 100%);
  border-radius: var(--radius-lg);
  color: white;
  box-shadow: var(--shadow-lg);
}
.filosofia-quote::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 24px;
  font-family: var(--font-serif);
  font-size: 6rem;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  font-weight: 700;
}
.filosofia-quote-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  font-style: italic;
  color: rgba(255,255,255,0.95);
}
.filosofia-quote-author {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
}
.filosofia-quote-author::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.35);
}

.filosofia-content { position: relative; z-index: 1; }

.filosofia-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

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

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.pillar-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.pillar-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--coral-pale) 0%, rgba(254,152,112,0.18) 100%);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.pillar-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  margin-top: 2px;
}

/* ---- SECTION: SOBRE ---- */
#sobre {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sobre-visual { position: relative; }

.sobre-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--cream-2) 0%, #f7d8e8 100%);
}
.sobre-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.sobre-credential {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--gold);
  max-width: 220px;
}
.sobre-credential-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.sobre-credential-text {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.45;
}

.sobre-content { }

.sobre-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.sobre-highlight {
  background: linear-gradient(135deg, var(--coral-pale) 0%, rgba(230,101,167,0.05) 100%);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 2rem 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--wine-dark);
  line-height: 1.6;
}

/* ---- SECTION: SERVICOS ---- */
#servicos {
  background: var(--white);
  text-align: center;
}

.section-header {
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.section-intro { margin: 0 auto; }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: left;
}

.servico-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.servico-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--wine) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.servico-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.servico-card:hover::before { transform: scaleX(1); }

.servico-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--coral-pale) 0%, rgba(254,152,112,0.15) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.servico-icon svg { width: 26px; height: 26px; stroke: var(--wine); fill: none; stroke-width: 1.6; }

.servico-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wine-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.servico-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ---- SECTION: PARA QUEM ---- */
#para-quem {
  background: var(--cream);
}

.para-quem-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}

.para-quem-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.para-quem-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 15px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.4;
}
.para-quem-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.para-quem-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- SECTION: CURA ---- */
#cura {
  background: linear-gradient(135deg, var(--pink-dark) 0%, #6e1a4e 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 0;
}

.cura-bg-lines {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.5) 0px, rgba(255,255,255,0.5) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.5) 0px, rgba(255,255,255,0.5) 1px, transparent 1px, transparent 60px);
}

.cura-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,112,254,0.18) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cura-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
}

.cura-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 2rem;
}

.cura-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: white;
  line-height: 1.35;
  margin-bottom: 1.75rem;
}

.cura-title em {
  display: block;
  font-style: normal;
  color: var(--gold-light);
  margin-top: 0.2em;
}

.cura-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

/* ---- SECTION: DIFERENCIAIS ---- */
#diferenciais {
  background: var(--white);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.diferencial-item {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--cream);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.diferencial-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.diferencial-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(254,152,112,0.35);
  line-height: 1;
  flex-shrink: 0;
  width: 38px;
}
.diferencial-body { }
.diferencial-title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--wine-dark);
  margin-bottom: 4px;
}
.diferencial-desc {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---- SECTION: DEPOIMENTO ---- */
#depoimento {
  background: var(--cream);
  text-align: center;
}

.depoimento-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.depoimento-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 36px;
  font-family: var(--font-serif);
  font-size: 7rem;
  color: rgba(254,152,112,0.15);
  line-height: 1;
  font-weight: 700;
}

.depoimento-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 1.5rem;
}
.star { font-size: 1.2rem; color: var(--gold); }

.depoimento-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-mid);
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.depoimento-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.depoimento-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--wine) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.depoimento-info { text-align: left; }
.depoimento-name { font-weight: 600; font-size: 0.9rem; color: var(--wine-dark); }
.depoimento-role { font-size: 0.78rem; color: var(--text-light); }

/* ---- SECTION: CTA MEIO ---- */
#cta-meio {
  background: linear-gradient(135deg, var(--rose) 0%, var(--pink) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-meio-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-meio-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-meio-content h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.cta-meio-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.02rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ---- SECTION: FAQ ---- */
#faq {
  background: var(--cream);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}
.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  user-select: none;
}
.faq-question:hover { color: var(--wine); }
.faq-item.open .faq-question { color: var(--wine); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--wine);
  border-color: var(--wine);
}
.faq-icon svg { width: 14px; height: 14px; stroke: var(--text-light); stroke-width: 2; transition: var(--transition); }
.faq-item.open .faq-icon svg { stroke: white; transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ---- SECTION: FORMULÁRIO ---- */
#contato {
  background: linear-gradient(160deg, var(--pink-dark) 0%, #5a1440 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.contato-bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,112,254,0.14) 0%, transparent 65%);
  top: -200px;
  right: -200px;
}

.contato-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
}

.contato-info h2 { color: var(--white); margin-bottom: 1rem; }
.contato-info p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contato-details { display: flex; flex-direction: column; gap: 14px; }
.contato-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.contato-detail svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; flex-shrink: 0; }
.contato-detail a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.contato-detail a:hover { color: var(--gold); }

/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}

.form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--wine-dark);
  margin-bottom: 0.4rem;
}
.form-card .form-subtitle {
  font-size: 0.87rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group:last-of-type { margin-bottom: 0; }

.form-label { font-size: 0.8rem; font-weight: 600; color: var(--text-dark); letter-spacing: 0.02em; }

.form-input,
.form-textarea {
  padding: 13px 16px;
  border: 1.5px solid #e8d5de;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(254,152,112,0.14);
}
.form-input.error,
.form-textarea.error {
  border-color: #E05555;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-light); opacity: 0.7; }

.form-textarea { resize: vertical; min-height: 100px; }

.form-error {
  font-size: 0.75rem;
  color: #E05555;
  display: none;
}
.form-group.has-error .form-error { display: block; }

.btn-form {
  width: 100%;
  justify-content: center;
  padding: 15px 32px;
  font-size: 0.95rem;
  margin-top: 22px;
  border-radius: 12px;
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
.form-privacy a { color: var(--gold); text-decoration: underline; }

/* ---- CTA FINAL ---- */
#cta-final {
  background: var(--cream-2);
  text-align: center;
  padding: 100px 0;
}

.cta-final-content {
  max-width: 660px;
  margin: 0 auto;
}

.cta-final-content h2 {
  margin-bottom: 1rem;
  line-height: 1.25;
}

.cta-final-content p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-final-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- FOOTER ---- */
#footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

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

.footer-logo {
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
  /* clarear logo para fundo escuro */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.83rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.55);
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.footer-social a:hover {
  background: var(--gold);
  color: white;
}
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-item svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-dev { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-dev a { color: var(--gold); }

/* ---- ANIMAÇÕES ON-SCROLL ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.text-wine { color: var(--wine); }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 380px; margin: 0 auto; }
  .hero-img-badge { left: -10px; }
  .hero-sub { max-width: 100%; }

  .filosofia-inner { grid-template-columns: 1fr; gap: 40px; }
  .sobre-inner { grid-template-columns: 1fr; gap: 40px; }
  .sobre-visual { max-width: 380px; margin: 0 auto; }
  .sobre-credential { right: 10px; }

  .para-quem-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .contato-inner { grid-template-columns: 1fr; gap: 40px; }

  .diferenciais-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .container { padding: 0 16px; }

  .servicos-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .para-quem-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .depoimento-card { padding: 36px 24px; }
  .form-card { padding: 32px 22px; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-final-actions { flex-direction: column; align-items: center; }
  .cta-final-actions .btn { width: 100%; justify-content: center; }

  .whatsapp-fab { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
}
