/* ==============================================
   MESA HERMÉTICA — STYLE.CSS
   Tema: Clean-Mystic (Design Premium)
   Padrão: Coder Master
   ============================================== */

/* ─────────────────────────────────────────────
   0. CSS CUSTOM PROPERTIES (Design Tokens)
   ───────────────────────────────────────────── */
:root {
  /* Cores — identidade visual */
  --gold: #E2C275;
  --gold-light: #F5E6C8;
  --gold-dark: #C9A84E;
  --purple: #5D328E;
  --purple-dark: #3E1F6B;
  --purple-light: #7B4FB5;
  --white: #FFFFFF;
  --off-white: #F8F6F1;
  --cream: #FBF9F5;
  --dark: #1A1A2E;
  --dark-light: #2D2D44;
  --gray: #6B6B80;
  --gray-light: #E0DED8;

  /* Tipografia */
  --font-heading: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;

  /* Espaçamento */
  --section-padding: 110px 0;
  --container-max: 1200px;
  --container-padding: 0 40px;
  --gap: 28px;

  /* Bordas */
  --radius-card: 16px;
  --radius-btn: 50px;
  --radius-sm: 8px;

  /* Transições */
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 12px 48px rgba(26, 26, 46, 0.12);
  --shadow-gold: 0 6px 24px rgba(226, 194, 117, 0.35);
  --shadow-purple: 0 6px 24px rgba(93, 50, 142, 0.2);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

strong {
  font-weight: 600;
}

/* ─────────────────────────────────────────────
   2. ACESSIBILIDADE
   ───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: var(--radius-card);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

*:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@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;
  }
}

/* ─────────────────────────────────────────────
   3. LAYOUT
   ───────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ─────────────────────────────────────────────
   4. TIPOGRAFIA UTILITÁRIA
   ───────────────────────────────────────────── */
.text-gold {
  color: var(--gold-dark);
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; font-weight: 600; }

/* ─────────────────────────────────────────────
   5. BOTÕES
   ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn i {
  font-size: 1.1em;
}

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

.btn--gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-gold);
}

.btn--gold:active {
  transform: translateY(0) scale(1);
}

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

.btn--purple:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-purple);
}

.btn--purple:active {
  transform: translateY(0);
}

.btn--lg {
  padding: 18px 48px;
  font-size: 1.1rem;
}

.btn--nav {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ─────────────────────────────────────────────
   6. HEADER
   ───────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 194, 117, 0.12);
  transition: all var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.97);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

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

.header__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}


.header__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__link {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark-light);
  position: relative;
  padding: 4px 0;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--purple-light));
  transition: width var(--transition);
  border-radius: 2px;
}

.header__link:hover {
  color: var(--purple);
}

.header__link:hover::after,
.header__link--active::after {
  width: 100%;
}

.header__link--active {
  color: var(--purple);
}

/* Hamburger */
.header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ─────────────────────────────────────────────
   7. HERO — Layout 2 colunas
   ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--white);
  overflow: hidden;
}

/* Background decorations */
.hero__bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.hero__bg-glow--1 {
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(226, 194, 117, 0.12) 0%, transparent 70%);
}

.hero__bg-glow--2 {
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(93, 50, 142, 0.06) 0%, transparent 70%);
}

.hero__bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(226, 194, 117, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(93, 50, 142, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__content {
  text-align: left;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--off-white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.hero__badge i {
  color: var(--gold);
  font-size: 0.9em;
}

.hero__title {
  font-size: 3rem;
  margin-bottom: 24px;
  line-height: 1.15;
}

/* Lead subtitle under main hero title (smaller than h1 but more prominent than paragraph subtitle) */
.hero__lead {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 14px;
  font-weight: 600;
}

.hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--dark-light);
  margin-bottom: 14px;
}

.hero__description {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 36px;
}

.hero__cta {
  margin-bottom: 36px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gray);
  font-weight: 500;
}

.hero__trust-item i {
  color: var(--gold);
  font-size: 0.95em;
}

/* Hero visual (coluna direita) */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__image-wrapper {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-ring {
  position: absolute;
  border-radius: 50%;
}

.hero__image-ring--outer {
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold-light);
  animation: hero-ring-rotate 20s linear infinite;
  background: 
    radial-gradient(circle, transparent 60%, rgba(226, 194, 117, 0.04) 100%);
}

.hero__image-ring--inner {
  width: 85%;
  height: 85%;
  border: 1px dashed rgba(93, 50, 142, 0.2);
  animation: hero-ring-rotate 30s linear infinite reverse;
}

@keyframes hero-ring-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__logo-image {
  width: 240px;
  height: 240px;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 32px rgba(226, 194, 117, 0.2));
}

/* Hero image placeholder */
.hero__image-placeholder {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--gold-light) 50%, rgba(93, 50, 142, 0.08) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed var(--gold);
  filter: drop-shadow(0 8px 32px rgba(226, 194, 117, 0.2));
  overflow: hidden;
}

.hero__placeholder-icon {
  font-size: 3rem;
  color: var(--purple);
  opacity: 0.25;
}

.hero__placeholder-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--purple);
  opacity: 0.35;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Actual image inside the circular placeholder */
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* Floating icons */
.hero__float-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero__float-icon {
  position: absolute;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--gold);
  font-size: 0.9rem;
  animation: float 6s ease-in-out infinite;
}

.hero__float-icon--1 {
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.hero__float-icon--2 {
  bottom: 15%;
  left: -8%;
  animation-delay: 2s;
  color: var(--purple);
}

.hero__float-icon--3 {
  bottom: 5%;
  right: 5%;
  animation-delay: 4s;
}

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

/* ─────────────────────────────────────────────
   8. SECTION DIVIDER
   ───────────────────────────────────────────── */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0;
  background: var(--white);
}

.section-divider__line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-divider__icon {
  color: var(--gold);
  font-size: 0.6rem;
  opacity: 0.6;
}

/* ─────────────────────────────────────────────
   9. SEÇÕES — BASE
   ───────────────────────────────────────────── */
.section {
  padding: var(--section-padding);
  background: var(--white);
  position: relative;
}

.section--alt {
  background: var(--off-white);
}

.section--purple {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, #6B3FA0 100%);
  position: relative;
  overflow: hidden;
}

.section--purple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 90%, rgba(226, 194, 117, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.section--cta {
  background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 50%, var(--off-white) 100%);
  padding: 90px 0 40px;
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section__header--left {
  text-align: left;
  margin: 0 0 36px;
}

.section__header--left .section__title,
.section__header--left .section__subtitle {
  text-align: left;
}

.section__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--gold-light);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section__badge i {
  font-size: 0.8em;
  color: var(--gold-dark);
}

.section__badge--light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
}

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

.section__title {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

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

.section__subtitle {
  font-size: 1.08rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ensure bullets in generic sections have left margin */
.section ul {
  margin-left: 1.2rem;
  margin-bottom: 16px;
}

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

.section__cta {
  text-align: center;
  margin-top: 52px;
}

/* ─────────────────────────────────────────────
   9B. MESA GRID (Como funciona a Mesa)
   ───────────────────────────────────────────── */
.mesa-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);
  max-width: 960px;
  margin: 0 auto;
}

/* Card base */
.mesa-card {
  flex: 0 1 calc(33.333% - 20px);
  min-width: 260px;
  background: var(--white);
  border: 1px solid rgba(224, 222, 216, 0.6);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.mesa-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
}

/* Ícone circular dourado */
.mesa-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--gold-light) 0%, rgba(226, 194, 117, 0.2) 100%);
  border: 1px solid rgba(226, 194, 117, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.mesa-card:hover .mesa-card__icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-color: var(--gold);
}

.mesa-card__icon i {
  font-size: 1.2rem;
  color: var(--purple);
  transition: color var(--transition);
}

.mesa-card:hover .mesa-card__icon i {
  color: var(--dark);
}

.mesa-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.mesa-card__text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Responsivo — mesa-grid */
@media (max-width: 900px) {
  .mesa-card {
    flex: 0 1 calc(50% - 14px);
    min-width: 220px;
  }
}

@media (max-width: 600px) {
  .mesa-card {
    flex: 1 1 100%;
    min-width: 0;
  }
}

/* ─────────────────────────────────────────────
   10. FEATURES GRID (Como Funciona)
   ───────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(224, 222, 216, 0.6);
  border-radius: var(--radius-card);
  padding: 40px 28px 36px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--purple-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card--highlight {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--off-white) 100%);
  border-color: var(--gold);
}

.feature-card--highlight::before {
  opacity: 1;
  background: var(--gold);
}

.feature-card__icon-wrapper {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--gold-light) 0%, rgba(226, 194, 117, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.feature-card:hover .feature-card__icon-wrapper {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(226, 194, 117, 0.25);
}

.feature-card__icon-wrapper--alt {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
}

.feature-card__icon-wrapper--alt .feature-card__icon {
  color: var(--white);
}

.feature-card__icon {
  font-size: 1.5rem;
  color: var(--purple);
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-card__text {
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────
   11. TWO COLUMN LAYOUT (Para Quem É)
   ───────────────────────────────────────────── */
.section__two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* Visual card */
.visual-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.visual-card__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 194, 117, 0.12) 0%, rgba(93, 50, 142, 0.05) 50%, transparent 70%);
  filter: blur(30px);
}

.visual-card__img {
  width: 320px;
  height: 320px;
  max-width: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 12px 36px rgba(226, 194, 117, 0.2));
  border-radius: 50%;
  display: block;
}

/* Visual card placeholder */
.visual-card__placeholder {
  width: 280px;
  height: 280px;
  position: relative;
  z-index: 2;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--gold-light) 50%, rgba(93, 50, 142, 0.06) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed var(--gold);
  filter: drop-shadow(0 12px 36px rgba(226, 194, 117, 0.2));
}

.visual-card__placeholder-icon {
  font-size: 3.5rem;
  color: var(--purple);
  opacity: 0.2;
}

.visual-card__placeholder-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--purple);
  opacity: 0.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.visual-card__label {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple);
  position: relative;
  z-index: 2;
}

.visual-card__label i {
  color: var(--gold);
}

/* Responsive sizing for visual card image and glow */
@media (max-width: 900px) {
  .visual-card__img {
    width: 260px;
    height: 260px;
  }
  .visual-card__glow {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .visual-card__img {
    width: 200px;
    height: 200px;
  }
  .visual-card__glow {
    width: 240px;
    height: 240px;
  }
}

/* Audience list */
.audience-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audience-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--off-white);
  border-radius: var(--radius-card);
  border: 1px solid transparent;
  transition: all var(--transition);
}

.audience-item:hover {
  background: var(--white);
  border-color: var(--gold-light);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.audience-item__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--gold-light) 0%, rgba(226, 194, 117, 0.2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.audience-item:hover .audience-item__icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
}

.audience-item__content p {
  font-size: 1rem;
  color: var(--dark-light);
  line-height: 1.5;
}

/* ─────────────────────────────────────────────
   12. BENEFITS GRID
   ───────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap);
  position: relative;
  z-index: 2;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(226, 194, 117, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.benefit-card__icon-wrapper {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(226, 194, 117, 0.2) 0%, rgba(226, 194, 117, 0.08) 100%);
  border: 1px solid rgba(226, 194, 117, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.benefit-card:hover .benefit-card__icon-wrapper {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-color: var(--gold);
}

.benefit-card__icon {
  font-size: 1.3rem;
  color: var(--gold);
  transition: color var(--transition);
}

.benefit-card:hover .benefit-card__icon {
  color: var(--dark);
}

.benefit-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-card__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   13. TERAPEUTA
   ───────────────────────────────────────────── */
.therapist {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.therapist__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.therapist__image-frame {
  width: 300px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 3px solid var(--gold-light);
  box-shadow: var(--shadow-lg);
}

.therapist__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--gold-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* Therapist image fills the framed area and adapts while keeping the frame's rounded corners */
.therapist__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.therapist__placeholder-icon {
  font-size: 3rem;
  color: var(--purple);
  opacity: 0.15;
}

.therapist__image-initials {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--purple);
  opacity: 0.2;
}

.therapist__decoration {
  position: absolute;
  top: 20px;
  left: calc(50% - 130px);
  width: 280px;
  height: 360px;
  border: 2px solid var(--gold);
  border-radius: 20px;
  opacity: 0.25;
  z-index: 1;
}

/* Floating badges */
.therapist__floating-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-light);
  border: 1px solid var(--gold-light);
}

.therapist__floating-badge i {
  color: var(--gold);
  font-size: 0.9rem;
}

.therapist__floating-badge--top {
  top: 24px;
  right: -20px;
  animation: float 5s ease-in-out infinite;
}

.therapist__floating-badge--bottom {
  bottom: 40px;
  left: -10px;
  animation: float 5s ease-in-out infinite 2.5s;
}

.therapist__content {
  text-align: left;
}

.therapist__content .section__title {
  text-align: left;
}

.therapist__role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 24px;
  padding: 6px 16px;
  background: rgba(93, 50, 142, 0.06);
  border-radius: var(--radius-btn);
}

.therapist__role i {
  color: var(--gold);
  font-size: 0.85em;
}

.therapist__bio-wrapper {
  margin-bottom: 28px;
}

.therapist__bio {
  font-size: 1.02rem;
  color: var(--dark-light);
  line-height: 1.75;
  margin-bottom: 14px;
}

.therapist__bio:last-child {
  margin-bottom: 0;
}

.therapist__pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.therapist__pillar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-light);
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
}

.therapist__pillar:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.therapist__pillar i {
  color: var(--gold-dark);
  font-size: 0.85em;
}

/* ─────────────────────────────────────────────
   14. CTA FINAL
   ───────────────────────────────────────────── */
.cta-final {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 48px;
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--gold-light);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--purple), var(--gold));
}

.cta-final__decoration {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--gold-light) 0%, rgba(226, 194, 117, 0.2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.4rem;
}

.cta-final__title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-final__text {
  font-size: 1.08rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 32px;
}

.cta-final__features {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.cta-final__features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
}

.cta-final__features i {
  color: var(--gold);
  font-size: 0.85em;
}

/* ─────────────────────────────────────────────
   15A. STEPS TIMELINE (Como Funciona)
   ───────────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 28px;
  position: relative;
  padding-bottom: 48px;
}

.step:last-child {
  padding-bottom: 0;
}

/* Vertical connector line */
.step::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light), transparent);
}

.step:last-child::before {
  display: none;
}

.step__number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(226, 194, 117, 0.3);
}

.step__content {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  border: 1px solid rgba(224, 222, 216, 0.6);
  transition: all var(--transition);
  position: relative;
}

.step__content:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.step__icon-wrapper {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-light) 0%, rgba(226, 194, 117, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step__icon {
  font-size: 1.1rem;
  color: var(--purple);
}

.step__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.step__text {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--gray);
}

/* Info box */
.info-box {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--gold-light) 0%, rgba(226, 194, 117, 0.1) 100%);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 28px 32px;
}

.info-box__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.info-box__title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.info-box__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark-light);
}

/* ─────────────────────────────────────────────
   15B. DISCLAIMER SECTION (Aviso Legal — separado)
   ───────────────────────────────────────────── */
.disclaimer-section {
  padding: 0 0 40px;
  background: var(--off-white);
}

.disclaimer-box {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 36px;
  background: var(--white);
  border-radius: 24px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.disclaimer-box__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, rgba(226, 194, 117, 0.2) 0%, rgba(226, 194, 117, 0.08) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.2rem;
}

.disclaimer-box__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.disclaimer-box__text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--gray);
}

.disclaimer-box__text strong {
  color: var(--dark);
}

/* ─────────────────────────────────────────────
   15C. FOOTER (Simples — centralizado)
   ───────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 36px 0 28px;
  border-top: 2px solid var(--gold);
}

.footer__simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.footer__brand-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__credits {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer__link {
  color: var(--gold);
  font-weight: 500;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ─────────────────────────────────────────────
   16. BOTÃO FLUTUANTE WHATSAPP
   ───────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all var(--transition);
  animation: whatsapp-pulse 2s ease-in-out infinite;
  color: #fff;
  font-size: 1.8rem;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(-100%) translateX(-12px) translateY(-50%);
  pointer-events: auto;
}

.whatsapp-float__tooltip {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateX(-100%) translateX(-12px) translateY(-50%);
  background: var(--dark);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
}

@keyframes whatsapp-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* ─────────────────────────────────────────────
   17. ANIMAÇÕES — Scroll Reveal
   ───────────────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.features-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.features-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.features-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.features-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }
.features-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.40s; }

.benefits-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.benefits-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.benefits-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.benefits-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }

.audience-list .animate-on-scroll:nth-child(2) { transition-delay: 0.06s; }
.audience-list .animate-on-scroll:nth-child(3) { transition-delay: 0.12s; }
.audience-list .animate-on-scroll:nth-child(4) { transition-delay: 0.18s; }
.audience-list .animate-on-scroll:nth-child(5) { transition-delay: 0.24s; }

/* ─────────────────────────────────────────────
   18. RESPONSIVIDADE
   ───────────────────────────────────────────── */

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  :root {
    --container-padding: 0 30px;
    --section-padding: 90px 0;
  }

  .hero__grid {
    gap: 40px;
  }

  .hero__image-wrapper {
    width: 300px;
    height: 300px;
  }

  .hero__logo-image {
    width: 200px;
    height: 200px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section__two-col {
    gap: 40px;
  }

  .therapist {
    gap: 40px;
  }

  .therapist__image-frame {
    width: 260px;
    height: 340px;
  }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  :root {
    --container-padding: 0 20px;
    --section-padding: 70px 0;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  body { font-size: 1rem; }

  /* Header mobile */
  .header__inner {
    height: 68px;
  }

  .header__logo-img {
    height: 36px;
  }

  .header__menu-toggle {
    display: flex;
  }

  .header__menu {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--white);
    padding: 24px 20px;
    gap: 12px;
    border-bottom: 1px solid var(--gray-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

  .header__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .header__link {
    font-size: 1.05rem;
    padding: 10px 0;
  }

  .btn--nav {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
  }

  .header__menu-toggle.is-active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .header__menu-toggle.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .header__menu-toggle.is-active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Hero mobile — uma coluna */
  .hero {
    min-height: auto;
    padding: 90px 0 60px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__content {
    text-align: center;
    order: 2;
  }

  .hero__visual {
    order: 1;
  }

  .hero__title {
    font-size: 1.85rem;
  }

  .hero__subtitle {
    font-size: 1.02rem;
  }

  .hero__description {
    font-size: 0.95rem;
  }

  .hero__trust {
    justify-content: center;
    gap: 14px;
  }

  .hero__image-wrapper {
    width: 240px;
    height: 240px;
  }

  .hero__logo-image {
    width: 160px;
    height: 160px;
  }

  .hero__image-placeholder {
    width: 160px;
    height: 160px;
  }

  .hero__placeholder-icon {
    font-size: 2rem;
  }

  .hero__float-icon {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
  }

  /* Grids mobile */
  .features-grid {
    grid-template-columns: 1fr;
  }

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

  /* Two col → one col */
  .section__two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .section__header--left .section__title,
  .section__header--left .section__subtitle {
    text-align: center;
  }

  .visual-card__img {
    width: 200px;
    height: 200px;
  }

  .visual-card__placeholder {
    width: 200px;
    height: 200px;
  }

  .visual-card__placeholder-icon {
    font-size: 2.5rem;
  }

  /* Terapeuta mobile */
  .therapist {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .therapist__content {
    text-align: center;
  }

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

  .therapist__image-frame {
    width: 220px;
    height: 280px;
    margin: 0 auto;
  }

  .therapist__decoration {
    left: calc(50% - 100px);
    width: 220px;
    height: 260px;
  }

  .therapist__floating-badge--top {
    right: calc(50% - 120px);
    top: 10px;
  }

  .therapist__floating-badge--bottom {
    left: calc(50% - 120px);
    bottom: 20px;
  }

  .therapist__pillars {
    justify-content: center;
  }

  /* CTA final mobile */
  .cta-final {
    padding: 40px 24px;
  }

  .cta-final__title {
    font-size: 1.4rem;
  }

  .cta-final__text {
    font-size: 0.98rem;
  }

  .cta-final__features {
    gap: 16px;
  }

  /* Buttons */
  .btn {
    padding: 14px 32px;
  }

  .btn--lg {
    padding: 16px 36px;
    font-size: 1rem;
  }

  /* Footer */
  .footer__simple {
    gap: 10px;
  }

  /* Disclaimer section */
  .disclaimer-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 28px 24px;
    border-left: none;
    border-top: 4px solid var(--gold);
  }

  /* Steps */
  .step {
    gap: 16px;
  }

  .step__content {
    padding: 22px 20px;
  }

  .step__number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
  }

  .step::before {
    left: 19px;
    top: 44px;
  }

  .info-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 24px 20px;
  }

  /* WhatsApp */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
  }

  .whatsapp-float__tooltip {
    display: none;
  }
}

/* ── Mobile pequeno (≤ 480px) ── */
@media (max-width: 480px) {
  .hero__title {
    font-size: 1.6rem;
  }

  .section__title {
    font-size: 1.35rem;
  }

  .hero__image-wrapper {
    width: 200px;
    height: 200px;
  }

  .hero__logo-image {
    width: 140px;
    height: 140px;
  }

  .hero__image-placeholder {
    width: 140px;
    height: 140px;
  }

  .hero__placeholder-icon {
    font-size: 1.8rem;
  }

  .hero__placeholder-text {
    font-size: 0.7rem;
  }

  .btn--lg {
    width: 100%;
  }

  .audience-item {
    padding: 14px 16px;
  }

  .cta-final__features {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
