/* ================================================
   MÃOS DA BRUXA — style.css
   Paleta: Azul Galáxia · Roxo Cósmico · Dourado Envelhecido
================================================ */

/* ============================================
   VARIÁVEIS
============================================ */
:root {
  --bg-deep:        #0b0d1a;
  --bg-darker:      #070810;
  --bg-card:        #111428;
  --bg-section-alt: #130d1f;
  --gold:           #c8963c;
  --gold-light:     #e8b84b;
  --purple:         #6b3fa0;
  --purple-light:   #9b6bc8;
  --crimson:        #7a1f3d;
  --amber:          #c4641a;
  --parchment:      #e8e0f0;
  --parchment-dark: #a898c0;
  --parchment-dim:  #6e6288;

  --font-title: 'Cinzel', serif;
  --font-body:  'Lato', sans-serif;
  --tr:         0.3s ease;

  --border-gold:   1px solid rgba(200,150,60,0.3);
  --border-purple: 1px solid rgba(107,63,160,0.4);
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--parchment);
  line-height: 1.75;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ============================================
   UTILIDADES
============================================ */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--gold);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(200,150,60,0.2);
}
.section-subtitle {
  text-align: center;
  color: var(--parchment-dark);
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Separador ornamental */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0.65;
  margin: 0.6rem 0;
  user-select: none;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 160px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,150,60,0.55), transparent);
}

/* ============================================
   BOTÕES
============================================ */
.btn-primary {
  display: inline-block;
  background: var(--purple);
  color: var(--parchment);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 4px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: var(--tr);
  animation: pulse-glow 2.8s ease-in-out infinite;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: #7d4db8;
  color: var(--parchment);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,63,160,0.5);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--parchment-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 4px;
  border: var(--border-purple);
  cursor: pointer;
  transition: var(--tr);
  text-align: center;
  letter-spacing: 0.02em;
}
.btn-secondary:hover {
  background: rgba(107,63,160,0.18);
  color: var(--parchment);
  border-color: rgba(107,63,160,0.7);
  transform: translateY(-2px);
}

.btn-small {
  display: inline-block;
  background: var(--purple);
  color: var(--parchment);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  border: 1px solid var(--gold);
  transition: var(--tr);
  margin-top: 1.1rem;
  letter-spacing: 0.02em;
}
.btn-small:hover {
  background: #7d4db8;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(107,63,160,0.45);
}

@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 14px rgba(107,63,160,0.4), 0 0 28px rgba(107,63,160,0.18); }
  50%      { box-shadow: 0 0 28px rgba(107,63,160,0.7), 0 0 55px rgba(107,63,160,0.35); }
}

/* ============================================
   FADE-IN
============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.6rem;
  background: rgba(7,8,16,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border-gold);
}
.navbar-logo {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-shadow: 0 0 14px rgba(200,150,60,0.4);
}
.navbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #2d8a50;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 1.05rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--tr);
  white-space: nowrap;
}
.navbar-btn:hover { background: #246e40; transform: translateY(-1px); }

/* ============================================
   SECTION 1 — HERO
============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-deep);
  overflow: hidden;
}

/* Canvas de estrelas */
#hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

/* Gradiente sutil sobre canvas — melhora legibilidade inferior */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 50%,
    rgba(7,8,16,0.45) 80%,
    rgba(7,8,16,0.75) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Container geral do hero */
.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 8rem 1.5rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
}

/* Grid 2 colunas: texto + foto */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

/* Coluna de texto */
.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Coluna da foto */
.hero-photo-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-portrait {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  border: 1px solid rgba(200,150,60,0.4);
  box-shadow:
    0 0 40px rgba(107,63,160,0.35),
    0 0 80px rgba(107,63,160,0.12),
    0 0 0 1px rgba(107,63,160,0.15);
  display: block;
}

/* Mobile: single column, foto oculta */
@media (max-width: 767px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-photo-col { display: none; }
  .hero-text-col {
    align-items: center;
    text-align: center;
  }
}

.hero-logo {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  color: var(--gold);
  letter-spacing: 0.07em;
  line-height: 1.1;
  text-shadow:
    0 0 20px rgba(200,150,60,0.5),
    0 0 45px rgba(200,150,60,0.22),
    0 2px 6px rgba(0,0,0,0.9);
  margin-bottom: 0.4rem;
}
.hero-tagline {
  font-family: var(--font-title);
  font-size: clamp(0.92rem, 2.2vw, 1.15rem);
  color: var(--parchment);
  font-style: italic;
  opacity: 0.88;
  margin-bottom: 1.4rem;
}
.hero-text {
  font-size: clamp(0.92rem, 1.9vw, 1.02rem);
  color: var(--parchment-dark);
  max-width: 560px;
  margin-bottom: 1.4rem;
  line-height: 1.88;
}
.hero-question {
  font-family: var(--font-title);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--purple-light);
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}
.hero-cta-sub {
  font-size: 0.92rem;
  color: var(--parchment-dim);
  font-style: italic;
  margin-bottom: 2rem;
  max-width: 500px;
}

/* ============================================
   SECTION 2 — COMO FUNCIONA
============================================ */
#como-funciona {
  position: relative;
  background:
    linear-gradient(rgba(19,13,31,0.82), rgba(19,13,31,0.82)),
    url('images/5632c98a-952f-44eb-8ee8-bbee64b1eea2.JPG') center / cover no-repeat;
}

/* STEPS — Como Funciona */
.steps-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at 50% 38%,
              rgba(107,63,160,0.38) 0%,
              rgba(17,20,40,0.92) 60%,
              rgba(11,13,26,0.96) 100%);
  border: 1px solid rgba(155,107,200,0.5);
  border-radius: 50%;
  padding: 2.5rem;
  flex: 0 0 320px;
  width: 320px;
  height: 320px;
  position: relative;
  transition: var(--tr);
  backdrop-filter: blur(6px);
  box-shadow:
    0 0 30px rgba(155,107,200,0.35),
    0 0 64px rgba(107,63,160,0.25),
    inset 0 0 44px rgba(107,63,160,0.28);
  animation: portalGlow 4.4s ease-in-out infinite;
}

/* Aro interno do portal */
.step::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(155,107,200,0.28);
  pointer-events: none;
}

.step:hover {
  border-color: rgba(180,130,225,0.8);
  transform: translateY(-4px);
  box-shadow:
    0 0 40px rgba(155,107,200,0.55),
    0 0 80px rgba(107,63,160,0.4),
    inset 0 0 48px rgba(107,63,160,0.35);
}

.step-number {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.8rem;
  opacity: 0.75;
}

.step-icon {
  font-size: 2.3rem;
  line-height: 1;
  margin-bottom: 0.7rem;
  filter: drop-shadow(0 0 12px rgba(155,107,200,0.65));
}

@keyframes portalGlow {
  0%, 100% {
    box-shadow:
      0 0 26px rgba(155,107,200,0.32),
      0 0 56px rgba(107,63,160,0.22),
      inset 0 0 40px rgba(107,63,160,0.26);
  }
  50% {
    box-shadow:
      0 0 40px rgba(155,107,200,0.55),
      0 0 84px rgba(107,63,160,0.38),
      inset 0 0 50px rgba(107,63,160,0.34);
  }
}

.step-title {
  font-family: var(--font-title);
  font-size: 0.98rem;
  color: var(--gold-light);
  margin-bottom: 0.55rem;
  letter-spacing: 0.04em;
  max-width: 220px;
}

.step-text {
  font-size: 0.84rem;
  color: var(--parchment-dark);
  line-height: 1.55;
  max-width: 215px;
}

.step-number {
  margin-bottom: 0.55rem;
}

/* Conector entre etapas */
.step-connector {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0;
  flex: 0 0 auto;
  padding: 0 0.5rem;
}

.connector-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, rgba(107,63,160,0.2), rgba(200,150,60,0.6), rgba(107,63,160,0.2));
}

.connector-arrow {
  color: var(--gold);
  font-size: 0.9rem;
  opacity: 0.8;
  flex-shrink: 0;
}

/* Mobile — empilhar verticalmente */
@media (max-width: 860px) {
  .steps-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .step {
    flex: 0 0 auto;
    width: min(320px, 84vw);
    height: min(320px, 84vw);
  }
  .step-connector {
    flex-direction: column;
    padding: 0.3rem 0;
  }
  .connector-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(107,63,160,0.2), rgba(200,150,60,0.6), rgba(107,63,160,0.2));
  }
}

/* ============================================
   SECTION 3 — SERVIÇOS
============================================ */
#servicos { background: var(--bg-deep); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--bg-card);
  border: var(--border-purple);
  border-radius: 6px;
  padding: 2.2rem 1.6rem;
  text-align: center;
  transition: var(--tr);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

/* Mesa Radiônica — imagem de fundo no card */
.service-card--radionica { background-image: url('images/mesa-radionica.jpg'); }

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17,20,40,0.90);
  transition: background var(--tr);
  pointer-events: none;
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-light), var(--gold), var(--purple-light), transparent);
  opacity: 0;
  transition: opacity var(--tr);
  z-index: 2;
}
.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(200,150,60,0.5);
  box-shadow: 0 12px 34px rgba(107,63,160,0.28);
}
.service-card:hover::before { background: rgba(17,20,40,0.78); }
.service-card:hover::after { opacity: 1; }

/* Background imagens individuais por oráculo */
.service-card--cigano   { background-image: url('images/baralho-cigano.jpg'); }
.service-card--tarot    { background-image: url('images/tarot.jpg'); }
.service-card--kipper   { background-image: url('images/f477bf1f-e27a-4d5f-b3bb-709628ed5069.JPG'); }
.service-card--sibilla  { background-image: url('images/afa7de1c-e0f8-4cbd-ae5e-28684c2a1386.JPG'); }
.service-card--runas    { background-image: url('images/78f8af36-9547-40b0-aa5b-a55a58e77283.JPG'); }
.service-card--astro    { background-image: url('images/4e6ae70b-ad13-4c16-92d8-de4746375bff.JPG'); }
.service-card--oraculos { background-image: url('images/26d08561-d4ad-47f8-91d7-f7e94df01e0d.JPG'); }

.service-emoji { font-size: 2.5rem; margin-bottom: 1rem; }
.service-title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}
.service-desc {
  color: var(--parchment-dark);
  font-size: 0.9rem;
  line-height: 1.75;
  flex: 1;
}

.service-price {
  margin-top: 1.1rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.service-price-note {
  margin-top: 0.35rem;
  font-size: 0.72rem;
  color: var(--parchment-dim);
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  max-width: 240px;
}

@media (min-width: 600px) {
  .service-card--last {
    grid-column: 1 / -1;
    max-width: 400px;
    width: 100%;
    margin-inline: auto;
  }
}

/* ============================================
   SECTION 4 — DEPOIMENTOS
============================================ */
#depoimentos {
  position: relative;
  background:
    linear-gradient(rgba(7,8,16,0.88), rgba(7,8,16,0.88)),
    url('images/462f11cf-d65a-4186-aef8-5276d2511421.JPG') center / cover no-repeat fixed;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: rgba(17,20,40,0.7);
  border: var(--border-purple);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: var(--tr);
  backdrop-filter: blur(8px);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,150,60,0.45);
  box-shadow: 0 10px 28px rgba(107,63,160,0.22);
}

.stars { font-size: 0.9rem; color: var(--gold); letter-spacing: 2px; }
.testimonial-text {
  color: var(--parchment-dark);
  font-size: 0.93rem;
  line-height: 1.88;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--crimson));
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--parchment); font-size: 0.9rem; }
.author-city { color: var(--parchment-dim); font-size: 0.78rem; font-style: italic; }

/* ============================================
   SECTION 5 — YOUTUBE
============================================ */
#youtube { background: var(--bg-section-alt); }

.yt-container {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  gap: 1.4rem;
  align-items: stretch;
}
.yt-main { flex: 1 1 auto; min-width: 0; }

/* Barra lateral com a lista de vídeos */
.yt-playlist {
  flex: 0 0 300px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: 560px;
  background: rgba(17,20,40,0.7);
  border: 1px solid rgba(155,107,200,0.3);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.yt-playlist-head {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(155,107,200,0.22);
  flex-shrink: 0;
}
.yt-playlist-title {
  display: block;
  font-family: var(--font-title);
  color: var(--gold-light);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
.yt-playlist-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--parchment-dim);
  font-style: italic;
}
.yt-playlist-scroll {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 0.5rem;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(155,107,200,0.5) transparent;
}
.yt-playlist-scroll::-webkit-scrollbar { width: 7px; }
.yt-playlist-scroll::-webkit-scrollbar-thumb {
  background: rgba(155,107,200,0.5);
  border-radius: 4px;
}
.yt-item {
  display: flex;
  gap: 0.65rem;
  width: 100%;
  padding: 0.5rem;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  align-items: center;
  transition: background var(--tr);
}
.yt-item:hover { background: rgba(107,63,160,0.22); }
.yt-item.active { background: rgba(107,63,160,0.38); }
.yt-item-thumb {
  flex: 0 0 104px;
  width: 104px;
  height: 58px;
  border-radius: 5px;
  object-fit: cover;
  background: #000;
}
.yt-item-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--parchment-dark);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.yt-item.active .yt-item-title { color: var(--parchment); }

/* Empilhar no mobile */
@media (max-width: 860px) {
  .yt-container { flex-direction: column; }
  .yt-playlist { flex: 1 1 auto; max-height: 340px; }
}

.yt-player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow: 0 0 30px rgba(200,150,60,0.15), 0 0 60px rgba(107,63,160,0.12);
  margin-bottom: 1.4rem;
}
.yt-player iframe,
.yt-player .yt-thumb {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.yt-player .yt-thumb { object-fit: cover; }
.yt-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.32);
  cursor: pointer;
  transition: background var(--tr);
}
.yt-play-overlay:hover { background: rgba(0,0,0,0.1); }
.yt-play-btn {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(200,0,0,0.85);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--tr), background var(--tr);
}
.yt-play-overlay:hover .yt-play-btn { transform: scale(1.1); background: #cc0000; }
.yt-play-btn svg { width: 26px; height: 26px; fill: #fff; margin-left: 4px; }

.yt-video-title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: var(--parchment-dark);
  text-align: center;
  margin-bottom: 1.3rem;
  min-height: 1.4em;
  padding: 0 0.5rem;
}
.yt-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================
   SECTION 6 — CONFIANÇA
============================================ */
#confianca {
  background: linear-gradient(135deg, #0e1020 0%, #130d1f 50%, #0b0d1a 100%);
  border-top: 1px solid rgba(200,150,60,0.2);
  border-bottom: 1px solid rgba(200,150,60,0.2);
  position: relative;
  overflow: hidden;
}

/* Ornamento de fundo sutil */
#confianca::before {
  content: '✦';
  position: absolute;
  font-size: 28rem;
  color: rgba(107,63,160,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.trust-card {
  background: rgba(17,20,40,0.7);
  border: 1px solid rgba(107,63,160,0.25);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}

/* Linha decorativa topo do card */
.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(200,150,60,0.6), transparent);
  border-radius: 2px;
}

.trust-card:hover {
  border-color: rgba(200,150,60,0.45);
  background: rgba(22,25,52,0.9);
  transform: translateY(-5px);
  box-shadow:
    0 16px 40px rgba(107,63,160,0.2),
    0 0 0 1px rgba(200,150,60,0.15);
}

.trust-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  line-height: 1;
  display: block;
}

.trust-title {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 0.65rem;
  letter-spacing: 0.05em;
}

.trust-desc {
  font-size: 0.875rem;
  color: var(--parchment-dark);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-card:last-child {
    grid-column: 1 / -1;
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }
}

/* ============================================
   SECTION 7 — CTA FINAL
============================================ */
#cta-final {
  position: relative;
  background:
    linear-gradient(
      160deg,
      rgba(122,31,61,0.72) 0%,
      rgba(11,13,26,0.92) 60%,
      rgba(7,8,16,1) 100%
    ),
    url('images/4c31f148-0296-405b-b395-1e10a218ce2c.JPG') center / cover no-repeat;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}
.cta-title {
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 4.5vw, 3rem);
  color: var(--gold);
  margin-bottom: 1.2rem;
  text-shadow: 0 0 24px rgba(200,150,60,0.35);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.cta-subtitle {
  font-size: clamp(1rem, 2.3vw, 1.15rem);
  color: var(--parchment);
  margin-bottom: 0.8rem;
}
.cta-sub-text {
  color: var(--parchment-dim);
  font-style: italic;
  margin-bottom: 2.6rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   SECTION 8 — FAQ
============================================ */
#faq { background: var(--bg-darker); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  list-style: none;
}
.faq-item {
  border: var(--border-purple);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(17,20,40,0.55);
  transition: border-color var(--tr);
}
.faq-item.open {
  border-color: rgba(200,150,60,0.5);
  background: rgba(17,20,40,0.85);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--parchment);
  font-size: 0.97rem;
  background: transparent;
  border: none;
  text-align: left;
  gap: 1rem;
  transition: color var(--tr);
}
.faq-question:hover { color: var(--gold-light); }

.faq-arrow {
  width: 24px; height: 24px;
  border-radius: 3px;
  border: 1px solid rgba(107,63,160,0.5);
  background: rgba(17,20,40,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--purple-light);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  transition: background var(--tr), border-color var(--tr), color var(--tr);
}
.faq-arrow::before { content: '+'; }
.faq-item.open .faq-arrow::before { content: '−'; }
.faq-item.open .faq-arrow {
  background: rgba(107,63,160,0.22);
  border-color: rgba(200,150,60,0.55);
  color: var(--gold-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.3rem;
  color: var(--parchment-dark);
  font-size: 0.93rem;
  line-height: 1.88;
}

/* ============================================
   FOOTER
============================================ */
footer {
  background: var(--bg-darker);
  padding: 3.2rem 1.5rem 2rem;
  text-align: center;
  border-top: var(--border-gold);
}
.footer-logo {
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-shadow: 0 0 14px rgba(200,150,60,0.35);
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--parchment-dim);
  font-size: 0.93rem;
  transition: color var(--tr);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  color: rgba(168,152,192,0.42);
  font-size: 0.83rem;
  margin-bottom: 0.85rem;
}
.footer-disclaimer {
  color: rgba(168,152,192,0.35);
  font-size: 0.77rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================
   SECTION — ENVIO DE REIKI
============================================ */
#reiki {
  background:
    radial-gradient(circle at 50% 0%, rgba(107,63,160,0.22), transparent 60%),
    var(--bg-section-alt);
  border-top: 1px solid rgba(155,107,200,0.2);
}
#reiki .section-title { letter-spacing: 0.06em; }
#reiki .section-subtitle { max-width: 640px; margin-inline: auto; }

.reiki-form {
  max-width: 560px;
  margin: 2.5rem auto 0;
  background: rgba(17,20,40,0.7);
  border: 1px solid rgba(155,107,200,0.35);
  border-radius: 14px;
  padding: 2.2rem 1.8rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 34px rgba(107,63,160,0.22);
  text-align: center;
}

.reiki-field { text-align: left; margin-bottom: 1.2rem; }
.reiki-field label {
  display: block;
  font-family: var(--font-title);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.reiki-opt {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--parchment-dim);
  letter-spacing: 0;
}
.reiki-field input,
.reiki-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--parchment);
  background: rgba(11,13,26,0.75);
  border: 1px solid rgba(155,107,200,0.35);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  transition: border-color var(--tr), box-shadow var(--tr);
  resize: vertical;
}
.reiki-field input::placeholder,
.reiki-field textarea::placeholder { color: var(--parchment-dim); }
.reiki-field input:focus,
.reiki-field textarea:focus {
  outline: none;
  border-color: rgba(200,150,60,0.6);
  box-shadow: 0 0 0 3px rgba(107,63,160,0.25);
}

.reiki-submit { margin-top: 0.4rem; cursor: pointer; border: 1px solid var(--gold); }
.reiki-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--parchment-dim);
  line-height: 1.5;
}

/* ============================================
   RESPONSIVIDADE
============================================ */
@media (max-width: 400px) {
  .btn-primary,
  .btn-secondary { font-size: 0.9rem; padding: 0.85rem 1.3rem; }
  .hero-logo { font-size: 2rem; }
}
@media (min-width: 768px) {
  .section-inner { padding: 6rem 2.5rem; }
}
@media (min-width: 1440px) {
  .section-inner { padding: 7rem 2rem; }
}
