/* =========================================
   ESPIRITUALISTA VALENTINA — PREMIUM DESIGN
   ========================================= */

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #9c7a2e;
  --deep: #0d1117;
  --deep-2: #161b27;
  --deep-3: #1e2535;
  --ocean: #0e3460;
  --ocean-light: #1a4a8a;
  --pearl: #f9f6f0;
  --pearl-2: #f2ede4;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #8a8aaa;
  --white: #ffffff;
  --radius: 1.2rem;
  --radius-sm: 0.6rem;
  --shadow-deep: 0 25px 60px rgba(0,0,0,0.35);
  --shadow-card: 0 12px 32px rgba(0,0,0,0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--pearl);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- SCROLL ANIMATIONS ---- */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

[data-animate="fade-left"] {
  transform: translateX(32px);
}

[data-animate="fade-right"] {
  transform: translateX(-32px);
}

[data-animate].animated {
  opacity: 1;
  transform: none;
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 17, 23, 0.97);
  backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--deep) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, #050d1f 0%, #0d1e40 40%, #0e2d5e 70%, #0a1a35 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 30%, rgba(14,52,96,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Animated water shimmer */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(10,30,70,0.8) 0%, transparent 100%);
  animation: waterShimmer 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes waterShimmer {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Star particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 2px; height: 2px;
  background: white;
  border-radius: 50%;
  box-shadow:
    120px 80px 0 0 rgba(255,255,255,0.5),
    250px 150px 0 0 rgba(201,168,76,0.6),
    400px 60px 0 0 rgba(255,255,255,0.3),
    550px 200px 0 0 rgba(255,255,255,0.4),
    700px 100px 0 0 rgba(201,168,76,0.3),
    850px 50px 0 0 rgba(255,255,255,0.5),
    1000px 170px 0 0 rgba(255,255,255,0.3),
    180px 320px 0 0 rgba(201,168,76,0.2),
    320px 420px 0 0 rgba(255,255,255,0.2),
    600px 350px 0 0 rgba(255,255,255,0.3),
    900px 280px 0 0 rgba(201,168,76,0.4),
    1100px 380px 0 0 rgba(255,255,255,0.2);
  animation: twinkle 4s ease-in-out infinite alternate;
}

.hero-particles::after {
  animation-delay: 2s;
  box-shadow:
    80px 200px 0 0 rgba(255,255,255,0.3),
    200px 30px 0 0 rgba(201,168,76,0.4),
    460px 290px 0 0 rgba(255,255,255,0.4),
    660px 240px 0 0 rgba(201,168,76,0.2),
    780px 410px 0 0 rgba(255,255,255,0.3),
    960px 130px 0 0 rgba(255,255,255,0.4),
    1050px 450px 0 0 rgba(201,168,76,0.3);
}

@keyframes twinkle {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 5rem;
}

.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
  max-width: 480px;
  line-height: 1.75;
}

.hero-list {
  list-style: none;
  margin-bottom: 2rem;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  padding: 0.5rem 0.8rem;
  background: rgba(255,255,255,0.05);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.hero-list .icon { font-size: 1.1rem; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--deep);
  box-shadow: 0 6px 24px rgba(201,168,76,0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,168,76,0.55);
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.full-width { width: 100%; justify-content: center; }

.hero-phone {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

.hero-phone a {
  color: var(--gold);
  font-weight: 500;
}

/* Hero image side */
.hero-image-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-img-glow {
  position: absolute;
  width: 75%;
  height: 75%;
  background: radial-gradient(ellipse, rgba(14,52,96,0.7) 0%, transparent 70%);
  border-radius: 50%;
  top: 10%; left: 12%;
  filter: blur(40px);
  z-index: 0;
}

.hero-main-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  border-radius: 1.5rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.2);
  filter: brightness(1.05) contrast(1.05);
}

.hero-card-float {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  max-width: 340px;
  width: 90%;
}

.hcf-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.hcf-text {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ============================
   SECTIONS GENERAL
   ============================ */
.section {
  padding: 5rem 0;
  background: var(--pearl);
}

.section-dark {
  background: var(--deep-2);
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

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

.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  line-height: 1.12;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-dark h2 { color: var(--white); }

.section h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-dark h2 em { color: var(--gold); }

.section-lead {
  max-width: 580px;
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.section-dark .section-lead { color: rgba(255,255,255,0.6); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section p {
  color: var(--text-mid);
  margin-bottom: 0.9rem;
  font-size: 0.98rem;
}

.section-dark p { color: rgba(255,255,255,0.65); }

/* ============================
   SOBRE - Grid 2
   ============================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.img-frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10,20,50,0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

.img-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.img-frame:hover img { transform: scale(1.03); }

.img-caption {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  font-style: italic;
}

.section-text strong { color: var(--ocean); }

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: gap 0.2s;
}

.link-cta:hover { gap: 0.6rem; color: var(--ocean); }

/* ============================
   DIVIDER IEMANJÁ
   ============================ */
.divider-iemanja {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-light) 50%, var(--ocean) 100%);
  padding: 1.25rem 0;
  text-align: center;
}

.divider-iemanja p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  letter-spacing: 0.08em;
}

/* ============================
   CARDS DE SERVIÇOS
   ============================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.38);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

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

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.card p strong { color: rgba(255,255,255,0.85); }

.card ul {
  list-style: none;
  margin-bottom: 1.2rem;
}

.card ul li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}

.card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.3rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: gap 0.2s, color 0.2s;
  gap: 0.25rem;
}

.card-link:hover {
  color: var(--gold-light);
  gap: 0.55rem;
}

/* ============================
   COMO FUNCIONA — STEPS
   ============================ */
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  margin-top: 4rem;
  opacity: 0.4;
  flex-shrink: 0;
  align-self: flex-start;
}

.steps-note {
  background: linear-gradient(135deg, var(--pearl-2), var(--pearl));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  overflow: hidden;
}

.steps-note-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
}

.steps-note p {
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.steps-cta {
  text-align: center;
}

.steps-cta-label {
  font-size: 0.85rem;
  color: var(--ocean);
  font-weight: 600;
  margin-bottom: 1rem !important;
}

/* ============================
   DEPOIMENTOS
   ============================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  transition: var(--transition);
}

.testimonial:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.3);
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 0.75rem;
}

.testimonial p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-author span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ============================
   CTA SECTION
   ============================ */
.section-cta {
  position: relative;
  background: linear-gradient(160deg, #05111f 0%, #0d2245 50%, #071630 100%);
  overflow: hidden;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(14,52,96,0.5) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cta-text .section-tag { color: var(--gold); }

.cta-text h2 {
  color: var(--white);
  font-size: 2.8rem;
}

.cta-text h2 em { color: var(--gold); }

.cta-text p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.75rem;
}

.cta-box {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 2rem;
}

.cta-phone {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem !important;
}

.cta-phone strong { color: var(--gold); }

.cta-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.9rem !important;
  font-style: italic;
  line-height: 1.65;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #070c14;
  color: rgba(255,255,255,0.5);
  padding: 2.5rem 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.footer p { font-size: 0.8rem; }

.footer-dev a {
  color: rgba(201,168,76,0.6);
  transition: color 0.2s;
}

.footer-dev a:hover { color: var(--gold); }

/* ============================
   WHATSAPP FLOAT
   ============================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero-text h1 { font-size: 3rem; }

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

  .steps-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .step-connector { display: none; }
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle { max-width: 100%; }
  .hero-list li { text-align: left; }
  .hero-cta { justify-content: center; }
  .hero-image-wrap { display: none; }

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

  .section-image-card { order: -1; }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .steps-note-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 80vw);
    height: 100vh;
    background: var(--deep);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem;
    transition: right 0.4s ease;
  }

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

  .nav-links a {
    font-size: 1rem;
  }

  .nav-toggle { display: flex; z-index: 200; }
}

@media (max-width: 640px) {
  .hero-text h1 { font-size: 2.4rem; }

  .section { padding: 3.5rem 0; }

  .section h2 { font-size: 2rem; }
  .cta-text h2 { font-size: 2rem; }

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

  .steps-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .step {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.12);
  }

  .step-number {
    font-size: 2rem;
    min-width: 50px;
    margin-bottom: 0;
  }
}

/* ===== PROVA SOCIAL ===== */
.section-trust {
  background: #fff;
  padding: 2.5rem 0;
  border-bottom: 1px solid #eee;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.trust-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #8b6914;
  line-height: 1;
}
.trust-label {
  font-size: 0.82rem;
  color: #666;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 600px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .trust-number { font-size: 2rem; }
}

