/* ============================================================== */
/*                                                                  */
/*  VERIDIANE CRUZ — NUTRICIONISTA FUNCIONAL                        */
/*  Landing Page Premium · Versão Refinada                          */
/*  Mobile-first · 100% editável                                    */
/*                                                                  */
/*  Sumário:                                                        */
/*  01. Variáveis e Reset                                           */
/*  02. Tipografia base                                             */
/*  03. Utilitários e Layout                                        */
/*  04. Botões                                                      */
/*  05. Ornamentos e divisores                                      */
/*  06. Header                                                      */
/*  07. Hero                                                        */
/*  08. Manifesto                                                   */
/*  09. Sobre                                                       */
/*  10. Programa EIXO                                               */
/*  11. Pilares                                                     */
/*  12. Para quem é                                                 */
/*  13. Diferenciais                                                */
/*  14. Atendimento                                                 */
/*  15. CTA Premium                                                 */
/*  16. FAQ                                                         */
/*  17. Contato                                                     */
/*  18. Footer                                                      */
/*  19. WhatsApp flutuante                                          */
/*  20. Animações reveal                                            */
/*  21. Responsivo                                                  */
/*                                                                  */
/* ============================================================== */


/* ============================================================== */
/* 01. VARIÁVEIS E RESET                                           */
/* ============================================================== */
:root {
  /* Cores neutras */
  --color-white: #ffffff;
  --color-cream: #faf6f0;
  --color-ivory: #f4ede1;
  --color-pearl: #fbf7f4;
  --color-blush: #f7ecea;
  --color-blush-deep: #f0dedb;

  /* Dourado */
  --color-gold: #cfb787;
  --color-gold-dark: #b59a6a;
  --color-gold-light: #e3d3b1;
  --color-gold-soft: #f0e6d3;

  /* Rosé — presença ampliada */
  --color-rose: #a87079;
  --color-rose-dark: #8c5961;
  --color-rose-soft: #c89097;
  --color-rose-light: #e2b9bd;
  --color-rose-mist: #f4dcdf;
  --color-rose-veil: #fbeeef;

  /* Tons escuros */
  --color-dark: #2b2b2b;
  --color-dark-soft: #3a3535;
  --color-text: #3a3a3a;
  --color-muted: #7a7a7a;

  /* Linhas */
  --color-line: #ecdfdc;
  --color-line-soft: #f3e8e6;
  --color-line-rose: rgba(168, 112, 121, 0.18);
  --color-line-gold: rgba(207, 183, 135, 0.32);

  /* Tipografia */
  --font-serif: "Cormorant Garamond", "Georgia", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Métricas */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --container-w: 1240px;

  /* Transições */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.25s;
  --t-mid: 0.45s;
  --t-slow: 0.8s;

  /* Sombras */
  --shadow-soft: 0 12px 40px rgba(43, 43, 43, 0.07);
  --shadow-medium: 0 24px 60px rgba(43, 43, 43, 0.12);
  --shadow-deep: 0 40px 80px -20px rgba(43, 43, 43, 0.22);
  --shadow-gold: 0 18px 40px rgba(207, 183, 135, 0.32);
  --shadow-rose: 0 18px 40px rgba(168, 112, 121, 0.22);
  --shadow-rose-deep: 0 22px 48px rgba(168, 112, 121, 0.32);

  /* Gradientes premium */
  --gradient-cream: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
  --gradient-blush: linear-gradient(135deg, var(--color-pearl) 0%, var(--color-blush) 60%, var(--color-rose-veil) 100%);
  --gradient-rose: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-dark) 100%);
  --gradient-gold: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  --gradient-gold-rose: linear-gradient(135deg, var(--color-gold) 0%, var(--color-rose) 100%);
  --gradient-dark: linear-gradient(180deg, #2b2b2b 0%, #1f1c1c 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--color-rose-mist);
  color: var(--color-rose-dark);
}


/* ============================================================== */
/* 02. TIPOGRAFIA BASE                                             */
/* ============================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--color-dark);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 em,
h2 em,
h3 em,
h4 em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold-dark);
}

/* Sessões femininas em rosé */
.manifesto .section-title em,
.for-who .section-title em,
.appointment .section-title em,
.faq .section-title em,
.contact .section-title em,
.manifesto-content .section-title em {
  color: var(--color-rose);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 1.6rem;
  position: relative;
  padding-left: 3.2rem;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2.4rem;
  height: 1px;
  background: var(--color-gold);
  transform: translateY(-50%);
}

.eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  transform: translate(-3px, -50%);
}

.eyebrow-rose {
  color: var(--color-rose);
}

.eyebrow-rose::before,
.eyebrow-rose::after {
  background: var(--color-rose);
}

.eyebrow-light {
  color: var(--color-gold-light);
}

.eyebrow-light::before,
.eyebrow-light::after {
  background: var(--color-gold-light);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  margin-bottom: 1.6rem;
}

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

.section-title--light {
  color: var(--color-white);
}

.section-title--light em {
  color: var(--color-gold-light);
}

.section-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--color-muted);
  text-align: center;
  margin-bottom: 1.6rem;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle--light {
  color: rgba(255, 255, 255, 0.7);
}


/* ============================================================== */
/* 03. UTILITÁRIOS E LAYOUT                                        */
/* ============================================================== */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

section {
  padding: clamp(4.5rem, 9vw, 9rem) 0;
  position: relative;
}


/* ============================================================== */
/* 04. BOTÕES                                                      */
/* ============================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--t-mid) var(--ease-out);
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.22) 50%, rgba(255, 255, 255, 0) 70%);
  transform: translateX(-100%);
  transition: transform 0.8s var(--ease);
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(181, 154, 106, 0.45);
}

.btn-rose {
  background: var(--color-white);
  color: var(--color-rose-dark);
  border-color: var(--color-rose);
  box-shadow: 0 8px 24px rgba(168, 112, 121, 0.12);
}

.btn-rose:hover {
  background: var(--gradient-rose);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-rose-deep);
  border-color: transparent;
}

.btn-ghost {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.btn-ghost:hover {
  background: var(--color-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn-light:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-header {
  padding: 0.78rem 1.65rem;
  font-size: 0.7rem;
}

.btn-eixo,
.btn-appointment,
.btn-form,
.btn-cta-premium {
  margin-top: 1rem;
}


/* ============================================================== */
/* 05. ORNAMENTOS E DIVISORES                                      */
/* ============================================================== */
.ornament {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem auto 0;
  color: var(--color-gold);
  opacity: 0.85;
}

.ornament--rose {
  color: var(--color-rose);
}

.ornament--light {
  color: var(--color-gold-light);
}


/* ============================================================== */
/* 06. HEADER                                                      */
/* ============================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: padding var(--t-mid) var(--ease),
              background var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
}

.site-header.is-scrolled {
  padding: 0.7rem 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--color-line-soft);
  box-shadow: 0 8px 26px rgba(168, 112, 121, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  transition: width var(--t-mid) var(--ease), height var(--t-mid) var(--ease);
}

.site-header.is-scrolled .brand-logo {
  width: 70px;
  height: 70px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-dark);
  letter-spacing: 0.04em;
}

.brand-role {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--color-rose);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--t-fast) var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-rose));
  transition: width var(--t-mid) var(--ease);
}

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

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

.nav-link.is-active {
  color: var(--color-rose);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--color-dark);
  transition: all var(--t-mid) var(--ease);
}


/* ============================================================== */
/* 07. HERO                                                        */
/* ============================================================== */
.hero {
  padding: 11rem 0 6rem;
  background: var(--gradient-blush);
  position: relative;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: -12%;
  right: -8%;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(207, 183, 135, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -18%;
  left: -10%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(168, 112, 121, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg::before,
.hero-bg::after {
  z-index: 1;
}

.hero > .container {
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 36rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  font-weight: 300;
  letter-spacing: -0.015em;
  margin-bottom: 1.8rem;
}

.hero-title em {
  background: var(--gradient-gold-rose);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--color-rose);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.8;
  color: var(--color-muted);
  margin-bottom: 2.4rem;
  max-width: 30rem;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
  margin-bottom: 2.6rem;
  padding-top: 1.8rem;
  position: relative;
}

.hero-trust::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background: var(--color-rose);
}

.hero-trust::after {
  content: "";
  position: absolute;
  top: 0;
  left: 60px;
  right: 0;
  height: 1px;
  background: var(--color-line);
}

.hero-trust li {
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-text);
}

.trust-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.65rem;
  flex-shrink: 0;
  border: 1px solid;
}

.trust-mark--gold {
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
  background: var(--color-gold-soft);
}

.trust-mark--rose {
  border-color: var(--color-rose);
  color: var(--color-rose);
  background: var(--color-rose-veil);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image {
  position: relative;
}

.hero-image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  z-index: 2;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.hero-image:hover .hero-image-frame img {
  transform: scale(1.04);
}

.hero-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-left: 2px solid var(--color-rose);
  z-index: 3;
}

.tag-line {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-rose);
  font-weight: 500;
}

.tag-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--color-dark);
}

.hero-decor {
  position: absolute;
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
}

.hero-decor--top {
  top: -24px;
  right: -24px;
  width: 55%;
  height: 35%;
  border: 1px solid var(--color-gold);
}

.hero-decor--bottom {
  bottom: -24px;
  left: -24px;
  width: 50%;
  height: 30%;
  border: 1px solid var(--color-rose);
}

.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  z-index: 3;
}

.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-rose);
  font-weight: 500;
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--color-rose) 0%, var(--color-gold) 100%);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--color-dark);
  animation: scrollLine 2.4s var(--ease) infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 200%; }
}


/* ============================================================== */
/* 08. MANIFESTO                                                   */
/* ============================================================== */
.manifesto {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-pearl) 100%);
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -200px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(168, 112, 121, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.manifesto-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-deep);
}

.manifesto-image::before {
  content: "";
  position: absolute;
  top: -22px;
  left: -22px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--color-rose);
  border-radius: 8px;
  z-index: -1;
}

.manifesto-image::after {
  content: "";
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 50%;
  height: 50%;
  border: 1px solid var(--color-gold);
  border-radius: 8px;
  z-index: -1;
}

.manifesto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.manifesto-image:hover img {
  transform: scale(1.04);
}

.manifesto-image-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gradient-rose);
  color: var(--color-white);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: var(--shadow-rose);
}

.manifesto-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.85vw, 1.55rem);
  line-height: 1.55;
  color: var(--color-dark);
  padding: 1.6rem 0 1.6rem 2.4rem;
  border-left: 2px solid var(--color-rose);
  margin: 2.2rem 0 2.6rem;
  position: relative;
}

.quote-mark {
  position: absolute;
  top: -1.4rem;
  left: 1.4rem;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--color-rose-light);
  font-style: italic;
  pointer-events: none;
}

.manifesto-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 1.2rem;
}

.manifesto-text strong {
  color: var(--color-rose-dark);
  font-weight: 500;
}

.manifesto-content .ornament {
  justify-content: flex-start;
  color: var(--color-rose);
  margin-top: 2.5rem;
}


/* ============================================================== */
/* 09. SOBRE                                                       */
/* ============================================================== */
.about {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-pearl) 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 30%;
  left: -150px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(207, 183, 135, 0.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 2;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 1.2rem;
}

.about-text strong {
  color: var(--color-dark);
  font-weight: 500;
}

.about-credentials {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-line);
  position: relative;
}

.about-credentials::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 60px;
  height: 1px;
  background: var(--color-rose);
}

.credentials-title {
  font-size: 1.7rem;
  margin-bottom: 2rem;
}

.credentials-title em {
  font-style: italic;
  color: var(--color-rose);
}

.credentials-block {
  margin-bottom: 1.8rem;
}

.credentials-subtitle {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 0.9rem;
  padding-left: 1.2rem;
  position: relative;
}

.credentials-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--color-rose);
  border-radius: 50%;
  transform: translateY(-50%);
}

.credentials-list li {
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-line-soft);
  position: relative;
  padding-left: 1.4rem;
}

.credentials-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

.credentials-list--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-left: 1.2rem;
}

.credentials-list--inline li {
  padding: 0.42rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  transition: all var(--t-mid) var(--ease);
}

.credentials-list--inline li::before {
  display: none;
}

.credentials-list--rose li {
  border-color: var(--color-rose-light);
  color: var(--color-rose-dark);
  background: var(--color-rose-veil);
}

.credentials-list--rose li:hover {
  background: var(--color-rose);
  color: var(--color-white);
  border-color: var(--color-rose);
  transform: translateY(-2px);
  box-shadow: var(--shadow-rose);
}

.credentials-list--gold li {
  border-color: var(--color-gold-light);
  color: var(--color-gold-dark);
  background: var(--color-gold-soft);
}

.credentials-list--gold li:hover {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.about-image {
  position: sticky;
  top: 120px;
}

.about-image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  z-index: 2;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.about-image:hover .about-image-frame img {
  transform: scale(1.04);
}

.about-decor {
  position: absolute;
  top: -28px;
  left: -28px;
  width: 65%;
  height: 65%;
  border: 1px solid var(--color-rose);
  border-radius: 8px;
  z-index: 1;
}

.about-decor::after {
  content: "";
  position: absolute;
  bottom: -36px;
  right: -36px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--color-gold);
  border-radius: 8px;
}

.about-badge {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 160px;
  height: 160px;
  background: var(--gradient-rose);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-rose-deep);
  text-align: center;
  z-index: 3;
  border: 3px solid var(--color-white);
}

.about-badge::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid var(--color-rose-light);
  border-radius: 50%;
  opacity: 0.6;
}

.badge-number {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
}

.badge-text {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  font-weight: 500;
}


/* ============================================================== */
/* 10. PROGRAMA EIXO                                               */
/* ============================================================== */
.eixo {
  background: var(--gradient-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.eixo::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(207, 183, 135, 0.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.eixo::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(168, 112, 121, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.eixo-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: 2;
}

.eixo-header .section-title {
  color: var(--color-white);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.eixo-header .section-title em {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-rose-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.1em;
  font-style: italic;
}

.eixo-header .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.eixo-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.eixo-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.eixo-image::before {
  content: "";
  position: absolute;
  top: -22px;
  left: -22px;
  right: 22px;
  bottom: 22px;
  border: 1px solid var(--color-gold);
  border-radius: 8px;
  z-index: -1;
}

.eixo-image::after {
  content: "";
  position: absolute;
  bottom: -22px;
  right: -22px;
  left: 22px;
  top: 22px;
  border: 1px solid var(--color-rose);
  border-radius: 8px;
  z-index: -1;
}

.eixo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.eixo-image:hover img {
  transform: scale(1.04);
}

.eixo-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(43, 43, 43, 0.5) 100%);
  pointer-events: none;
}

.eixo-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.eixo-text strong {
  color: var(--color-gold-light);
  font-weight: 500;
}

.eixo-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--color-white);
  margin: 2.6rem 0 1.4rem;
  position: relative;
  padding-left: 2rem;
}

.eixo-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.4rem;
  height: 1px;
  background: var(--color-rose-light);
  transform: translateY(-50%);
}

.eixo-symptoms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
  margin-bottom: 2.4rem;
}

.eixo-symptoms li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(207, 183, 135, 0.16);
  position: relative;
  padding-left: 1.6rem;
  transition: all var(--t-mid) var(--ease);
}

.eixo-symptoms li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  transform: translateY(-50%);
  transition: background var(--t-mid) var(--ease);
}

.eixo-symptoms li:hover {
  color: var(--color-rose-light);
  border-bottom-color: var(--color-rose);
  padding-left: 1.9rem;
}

.eixo-symptoms li:hover::before {
  background: var(--color-rose-light);
}


/* ============================================================== */
/* 11. PILARES                                                     */
/* ============================================================== */
.pillars {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-pearl) 100%);
  position: relative;
  overflow: hidden;
}

.pillars::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -150px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(207, 183, 135, 0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translateY(-50%);
}

.pillars::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(168, 112, 121, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pillars-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: 2;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.pillar-card {
  padding: 3rem 2rem 2.8rem;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
  transition: all var(--t-mid) var(--ease-out);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(43, 43, 43, 0.03);
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid) var(--ease);
}

.pillar-card--gold::before {
  background: var(--gradient-gold);
}

.pillar-card--rose::before {
  background: var(--gradient-rose);
}

.pillar-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--color-pearl) 100%);
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease);
  z-index: 0;
  pointer-events: none;
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.pillar-card--gold:hover {
  border-color: var(--color-gold);
}

.pillar-card--rose:hover {
  border-color: var(--color-rose);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-card:hover::after {
  opacity: 1;
}

.pillar-card > * {
  position: relative;
  z-index: 1;
}

.pillar-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--t-mid) var(--ease);
}

.pillar-icon svg {
  width: 38px;
  height: 38px;
}

.pillar-card--gold .pillar-icon {
  background: var(--color-gold-soft);
  color: var(--color-gold-dark);
}

.pillar-card--rose .pillar-icon {
  background: var(--color-rose-veil);
  color: var(--color-rose);
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.08);
}

.pillar-card--gold:hover .pillar-icon {
  background: var(--color-gold);
  color: var(--color-white);
}

.pillar-card--rose:hover .pillar-icon {
  background: var(--color-rose);
  color: var(--color-white);
}

.pillar-number {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  margin-bottom: 0.8rem;
}

.pillar-card--gold .pillar-number {
  color: var(--color-gold-dark);
}

.pillar-card--rose .pillar-number {
  color: var(--color-rose);
}

.pillar-title {
  font-size: 1.65rem;
  margin-bottom: 0.9rem;
  color: var(--color-dark);
}

.pillar-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--color-muted);
}


/* ============================================================== */
/* 12. PARA QUEM É                                                 */
/* ============================================================== */
.for-who {
  background: var(--gradient-blush);
  position: relative;
  overflow: hidden;
}

.for-who::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(168, 112, 121, 0.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.for-who-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.for-who-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.for-who-image::before {
  content: "";
  position: absolute;
  top: -22px;
  right: -22px;
  width: 55%;
  height: 55%;
  border: 1px solid var(--color-rose);
  border-radius: 8px;
  z-index: -1;
}

.for-who-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin: 18px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}

.for-who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.for-who-image:hover img {
  transform: scale(1.04);
}

.for-who-intro {
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 2rem;
  max-width: 32rem;
}

.for-who-list {
  display: grid;
  gap: 0.4rem;
}

.for-who-list li {
  padding: 1rem 0 1rem 2.6rem;
  border-bottom: 1px solid var(--color-line);
  font-size: 0.98rem;
  color: var(--color-text);
  position: relative;
  transition: color var(--t-fast) var(--ease), padding-left var(--t-fast) var(--ease);
}

.for-who-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.6rem;
  height: 1px;
  background: var(--color-rose);
  transform: translateY(-50%);
  transition: width var(--t-mid) var(--ease), background var(--t-mid) var(--ease);
}

.for-who-list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-rose);
  transform: translate(-3px, -50%);
  transition: background var(--t-mid) var(--ease);
}

.for-who-list li:hover {
  color: var(--color-rose-dark);
  padding-left: 3rem;
}

.for-who-list li:hover::before {
  width: 2.2rem;
  background: var(--color-rose-dark);
}

.for-who-list li:hover::after {
  background: var(--color-rose-dark);
}


/* ============================================================== */
/* 13. DIFERENCIAIS                                                */
/* ============================================================== */
.differentials {
  background: var(--gradient-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.differentials::before {
  content: "";
  position: absolute;
  top: 15%;
  left: -10%;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(168, 112, 121, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.differentials::after {
  content: "";
  position: absolute;
  bottom: 15%;
  right: -10%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(207, 183, 135, 0.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.differentials-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: 2;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.differential-item {
  padding: 2.4rem 1.8rem 2rem;
  border: 1px solid rgba(207, 183, 135, 0.22);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  transition: all var(--t-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.differential-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(207, 183, 135, 0.08) 0%, rgba(168, 112, 121, 0.08) 100%);
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease);
  pointer-events: none;
}

.differential-item:hover {
  border-color: var(--color-rose);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(168, 112, 121, 0.22);
}

.differential-item:hover::before {
  opacity: 1;
}

.differential-item:nth-child(odd):hover {
  border-color: var(--color-gold);
}

.differential-item > * {
  position: relative;
  z-index: 1;
}

.diff-mark {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}

.differential-item:nth-child(odd) .diff-mark {
  color: var(--color-gold);
}

.differential-item:nth-child(even) .diff-mark {
  color: var(--color-rose-light);
}

.diff-title {
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 0.7rem;
}

.diff-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}


/* ============================================================== */
/* 14. ATENDIMENTO                                                 */
/* ============================================================== */
.appointment {
  background: linear-gradient(180deg, var(--color-pearl) 0%, var(--color-white) 100%);
  position: relative;
  overflow: hidden;
}

.appointment::before {
  content: "";
  position: absolute;
  top: 30%;
  left: -180px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(168, 112, 121, 0.13) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.appointment-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.appointment-intro {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 2.4rem;
  max-width: 32rem;
}

.appointment-features {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 2.6rem;
}

.appointment-feature {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--color-line);
  transition: padding-left var(--t-mid) var(--ease);
}

.appointment-feature:last-of-type {
  border-bottom: none;
}

.appointment-feature:hover {
  padding-left: 0.5rem;
}

.appointment-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--t-mid) var(--ease);
  position: relative;
}

.appointment-feature-icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid;
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease);
}

.appointment-feature-icon--gold {
  background: var(--color-gold-soft);
  color: var(--color-gold-dark);
}

.appointment-feature-icon--gold::before {
  border-color: var(--color-gold);
}

.appointment-feature-icon--rose {
  background: var(--color-rose-veil);
  color: var(--color-rose);
}

.appointment-feature-icon--rose::before {
  border-color: var(--color-rose);
}

.appointment-feature:hover .appointment-feature-icon::before {
  opacity: 1;
}

.appointment-feature-icon svg {
  width: 22px;
  height: 22px;
}

.appointment-feature h4 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
  color: var(--color-dark);
}

.appointment-feature p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.appointment-image {
  position: relative;
}

.appointment-image-frame {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  position: relative;
}

.appointment-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(168, 112, 121, 0.18) 100%);
  z-index: 2;
  pointer-events: none;
}

.appointment-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.appointment-image:hover .appointment-image-frame img {
  transform: scale(1.04);
}

.appointment-card {
  position: absolute;
  bottom: -40px;
  left: -40px;
  background: var(--color-white);
  padding: 1.8rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep);
  max-width: 260px;
  position: absolute;
  z-index: 3;
  border-top: 3px solid var(--color-rose);
}

.appointment-card::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 30%;
  height: 3px;
  background: var(--color-gold);
}

.appointment-card-eyebrow {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-rose);
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.appointment-card-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-dark);
}


/* ============================================================== */
/* 15. CTA PREMIUM                                                 */
/* ============================================================== */
.cta-premium {
  background: var(--gradient-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.cta-premium::before,
.cta-premium::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-premium::before {
  top: -30%;
  left: -10%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(207, 183, 135, 0.22) 0%, transparent 70%);
}

.cta-premium::after {
  bottom: -30%;
  right: -10%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(168, 112, 121, 0.22) 0%, transparent 70%);
}

.cta-premium-inner {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-premium-title {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  color: var(--color-white);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.6rem;
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
}

.cta-premium-title em {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-rose-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.cta-premium-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  margin-bottom: 2.4rem;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================== */
/* 16. FAQ                                                         */
/* ============================================================== */
.faq {
  background: linear-gradient(180deg, var(--color-pearl) 0%, var(--color-blush) 100%);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(168, 112, 121, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.faq::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(207, 183, 135, 0.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.faq-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--t-mid) var(--ease-out);
  box-shadow: 0 4px 14px rgba(168, 112, 121, 0.04);
}

.faq-item:hover {
  border-color: var(--color-rose-light);
  box-shadow: 0 12px 30px rgba(168, 112, 121, 0.1);
}

.faq-item.is-open {
  border-color: var(--color-rose);
  box-shadow: var(--shadow-rose);
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-rose-veil) 100%);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 1.8rem;
  text-align: left;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--color-dark);
  font-weight: 500;
  cursor: pointer;
  transition: color var(--t-mid) var(--ease);
}

.faq-question:hover {
  color: var(--color-rose-dark);
}

.faq-item.is-open .faq-question {
  color: var(--color-rose-dark);
}

.faq-number {
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: var(--color-rose);
  padding-top: 0.25rem;
}

.faq-text {
  flex: 1;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-rose-veil);
  color: var(--color-rose);
  transition: all var(--t-mid) var(--ease);
}

.faq-icon svg {
  width: 18px;
  height: 18px;
}

.faq-icon-vert {
  transition: transform var(--t-mid) var(--ease);
  transform-origin: center;
}

.faq-item.is-open .faq-icon {
  background: var(--color-rose);
  color: var(--color-white);
  transform: rotate(180deg);
}

.faq-item.is-open .faq-icon-vert {
  transform: scaleY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.faq-item.is-open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 1.8rem 1.6rem;
  padding-left: 4.5rem;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.45s var(--ease) 0.1s, transform 0.45s var(--ease) 0.1s;
}

.faq-item.is-open .faq-answer-inner {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer-inner p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--color-text);
  position: relative;
  padding-left: 1.2rem;
  border-left: 2px solid var(--color-rose-light);
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.faq-cta p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--color-rose-dark);
  margin-bottom: 1.2rem;
}


/* ============================================================== */
/* 17. CONTATO                                                     */
/* ============================================================== */
.contact {
  background: linear-gradient(180deg, var(--color-blush) 0%, var(--color-pearl) 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -180px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(168, 112, 121, 0.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-intro {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 2.6rem;
  max-width: 26rem;
}

.contact-list {
  display: grid;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--color-line);
  transition: padding-left var(--t-mid) var(--ease);
}

.contact-item:hover {
  padding-left: 0.5rem;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(168, 112, 121, 0.1);
  transition: transform var(--t-mid) var(--ease);
}

.contact-item-icon--gold {
  background: var(--color-gold-soft);
  color: var(--color-gold-dark);
}

.contact-item-icon--rose {
  background: var(--color-rose-veil);
  color: var(--color-rose);
}

.contact-item:hover .contact-item-icon {
  transform: scale(1.08) rotate(-3deg);
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-item-label {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-rose);
  font-weight: 500;
}

.contact-item-text a,
.contact-item-text span:last-child {
  font-family: var(--font-serif);
  font-size: 1.20rem;
  color: var(--color-dark);
  line-height: 1.5;
}

.contact-item-text a:hover {
  color: var(--color-rose-dark);
}

.contact-form {
  background: var(--color-white);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep);
  position: relative;
  border-top: 3px solid var(--color-rose);
}

.contact-form::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 30%;
  height: 3px;
  background: var(--color-gold);
}

.contact-form-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.contact-form-text {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.form-field {
  margin-bottom: 1.4rem;
}

.form-field label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-rose);
  font-weight: 500;
  margin-bottom: 0.55rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-dark);
  background: var(--color-pearl);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-rose);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(168, 112, 121, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-muted);
  opacity: 0.7;
}

.btn-form {
  width: 100%;
  margin-top: 0.5rem;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--color-muted);
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}


/* ============================================================== */
/* 18. FOOTER                                                      */
/* ============================================================== */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  position: relative;
}

.footer-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-rose) 50%, var(--color-gold) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 2.8rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

.footer-logo {
  width: 64px;
  height: auto;
  margin-bottom: 1.4rem;
  opacity: 0.95;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  max-width: 18rem;
  padding-left: 1.2rem;
  border-left: 1px solid var(--color-rose);
}

.footer-title {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-rose-light);
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--color-rose);
}

.footer-list {
  display: grid;
  gap: 0.75rem;
}

.footer-list a,
.footer-list li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  transition: color var(--t-fast) var(--ease), padding-left var(--t-fast) var(--ease);
}

.footer-list a:hover {
  color: var(--color-rose-light);
  padding-left: 4px;
}

.footer-bottom {
  padding: 1.6rem 0;
  background: rgba(0, 0, 0, 0.18);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

.footer-cred {
  font-style: italic;
}


/* ============================================================== */
/* 19. WHATSAPP FLUTUANTE                                          */
/* ============================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.55);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: pulse 2s var(--ease) infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.15);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--color-rose-dark);
  color: var(--color-white);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--t-mid) var(--ease);
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--color-rose-dark);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}


/* ============================================================== */
/* 20. ANIMAÇÕES REVEAL                                            */
/* ============================================================== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.reveal:nth-child(4) {
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ============================================================== */
/* 21. RESPONSIVO                                                  */
/* ============================================================== */

/* Tablet grande / Laptop pequeno */
@media (max-width: 1100px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Tablet */
@media (max-width: 960px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 88%;
    max-width: 380px;
    height: 100vh;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-pearl) 100%);
    padding: 6rem 2rem 2rem;
    box-shadow: -20px 0 60px rgba(168, 112, 121, 0.18);
    transition: right var(--t-mid) var(--ease);
    z-index: 105;
    border-left: 3px solid var(--color-rose);
  }

  .nav.is-open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
  }

  .nav-link {
    font-size: 1.15rem;
    font-family: var(--font-serif);
    letter-spacing: 0.04em;
    padding-left: 1.2rem;
    position: relative;
  }

  .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--color-rose);
    transform: translateY(-50%);
    transition: width var(--t-mid) var(--ease);
  }

  .nav-link:hover::before,
  .nav-link.is-active::before {
    width: 0.6rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--color-rose);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--color-rose);
  }

  .btn-header {
    display: none;
  }

  .hero {
    padding: 9rem 0 4rem;
  }

  .hero-grid,
  .manifesto-grid,
  .about-grid,
  .eixo-grid,
  .for-who-grid,
  .appointment-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 2;
    max-width: 480px;
    margin: 0 auto;
  }

  .manifesto-image,
  .for-who-image,
  .eixo-image,
  .appointment-image {
    max-width: 480px;
    margin: 0 auto;
    order: -1;
  }

  .about-image {
    position: relative;
    top: 0;
    max-width: 460px;
    margin: 0 auto;
  }

  .about-badge {
    width: 130px;
    height: 130px;
    bottom: -22px;
    right: -22px;
  }

  .badge-number {
    font-size: 2.1rem;
  }

  .badge-text {
    font-size: 0.55rem;
  }

  .appointment-card {
    bottom: -30px;
    left: -10px;
    padding: 1.4rem 1.6rem;
  }

  .hero-scroll {
    display: none;
  }

  .faq-answer-inner {
    padding-left: 3.5rem;
  }
}

/* Mobile */
@media (max-width: 640px) {
  section {
    padding: 4.5rem 0;
  }
  
  .contact-form {
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  max-width: 100%;
  box-sizing: border-box;
}

  .container {
    padding: 0 1.25rem;
  }

  .brand-text {
    display: none;
  }


  .hero {
    padding: 7.5rem 0 3rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }

  .eyebrow {
    font-size: 0.66rem;
    padding-left: 2.6rem;
  }

  .eyebrow::before {
    width: 1.8rem;
  }

  .manifesto-quote {
    font-size: 1.15rem;
    padding: 1rem 0 1rem 1.5rem;
  }

  .quote-mark {
    font-size: 3.4rem;
    top: -1rem;
    left: 0.9rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .pillar-card {
    padding: 2.4rem 1.6rem;
  }

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

  .eixo-symptoms {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .credentials-list--inline {
    gap: 0.4rem;
    padding-left: 0;
  }

  .credentials-list--inline li {
    font-size: 0.76rem;
    padding: 0.35rem 0.9rem;
  }

  .cta-premium-title {
    font-size: 1.95rem;
  }

  .appointment-card {
    position: relative;
    bottom: 0;
    left: 0;
    margin: 1.5rem auto 0;
    max-width: 100%;
  }

  .about-decor {
    display: none;
  }

  .hero-decor {
    display: none;
  }

  .faq-question {
    padding: 1.2rem 1.2rem;
    gap: 1rem;
    font-size: 1.05rem;
  }

  .faq-answer-inner {
    padding: 0 1.2rem 1.4rem;
    padding-left: 1.2rem;
  }

  .faq-number {
    font-size: 0.72rem;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
  }

  .faq-icon svg {
    width: 14px;
    height: 14px;
  }
}

/* Mobile pequeno */
@media (max-width: 380px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .btn {
    padding: 0.95rem 1.7rem;
    font-size: 0.75rem;
  }
}


/* ============================================================== */
/* 22. O CUSTO DE CONTINUAR (seção adicional)                      */
/* ============================================================== */
.cost {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-blush) 100%);
  position: relative;
  overflow: hidden;
}

.cost::before {
  content: "";
  position: absolute;
  top: -8%;
  left: -8%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(168, 112, 121, 0.13) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cost::after {
  content: "";
  position: absolute;
  bottom: -8%;
  right: -8%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(207, 183, 135, 0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cost-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

.cost .section-title em {
  color: var(--color-rose);
}

.cost-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.5;
  color: var(--color-rose-dark);
  max-width: 40rem;
  margin: 0 auto 1.4rem;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  position: relative;
  z-index: 2;
}

.cost-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 2.6rem 2rem 2.4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(168, 112, 121, 0.04);
  transition: transform var(--t-mid) var(--ease-out),
              box-shadow var(--t-mid) var(--ease-out),
              border-color var(--t-mid) var(--ease-out);
}

.cost-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid) var(--ease);
}

.cost-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--color-rose-light);
}

.cost-card:hover::before {
  transform: scaleX(1);
}

.cost-card-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.cost-card-divider {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--color-gold);
  margin-bottom: 1.7rem;
}

.cost-list {
  display: grid;
  gap: 0.95rem;
}

.cost-list li {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-text);
  padding-left: 1.6rem;
  position: relative;
}

.cost-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-rose);
  transition: transform var(--t-fast) var(--ease);
}

.cost-card:hover .cost-list li::before {
  background: var(--color-rose);
}

.cost-note {
  text-align: center;
  margin: 2.8rem auto 0;
  max-width: 46rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.6;
  color: var(--color-rose-dark);
  position: relative;
  z-index: 2;
  padding-top: 2rem;
}

.cost-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--color-gold);
}

/* Responsivo da seção "O custo de continuar" */
@media (max-width: 900px) {
  .cost-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}


/* ============================================================== */
/* 23. DEPOIMENTOS (seção adicional)                              */
/* ============================================================== */
.testimonials {
  position: relative;
  padding: var(--space-3xl) 0;
  background: var(--gradient-blush);
  overflow: hidden;
}

.testimonials::before,
.testimonials::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.testimonials::before {
  top: -120px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(168, 112, 121, 0.10) 0%, transparent 70%);
}

.testimonials::after {
  bottom: -140px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(207, 183, 135, 0.12) 0%, transparent 70%);
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-2xl);
}

.testimonials .section-title em {
  font-style: italic;
  color: var(--color-rose);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  align-items: stretch;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid rgba(207, 183, 135, 0.18);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2rem 2rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold-rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-quote {
  position: absolute;
  top: 0.6rem;
  right: 1.4rem;
  font-family: var(--font-serif);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--color-rose-mist);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.testimonial-stars {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  color: var(--color-gold);
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  display: block;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 1.75rem;
}

.testimonial-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.25rem;
  margin-top: auto;
  border-top: 1px solid rgba(207, 183, 135, 0.2);
}

.testimonial-avatar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.5px;
}

.testimonial-avatar--rose {
  background: var(--gradient-rose);
  box-shadow: var(--shadow-rose);
}

.testimonial-avatar--gold {
  background: var(--gradient-gold);
  box-shadow: var(--shadow-gold);
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.testimonial-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-dark);
}

.testimonial-role {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-rose);
}

.testimonials-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* Responsivo da seção "Depoimentos" */
@media (max-width: 980px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}
