/* ═══════════════════════════════════════
   SEÇÕES — Hero, Sobre, Apresentação,
            Produtos, Testamento, Footer
   ═══════════════════════════════════════ */

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 60%, var(--hero-grad1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 20%, var(--hero-grad2) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 80% 80%, var(--hero-grad2) 0%, transparent 60%);
  transition: background 0.4s;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 60px 80px;
}

.hero-text {
  padding-right: 0;
}

.hero-text p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

html:not(.light) .hero-tag {
  border-color: rgba(0, 229, 255, 0.3);
}

.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}

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

.hero-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: 40px;
  max-width: 440px;
}

/* ── SOBRE MIM ── */
#sobre {
  position: relative;
}

#sobre::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -200px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sobre-glow) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: start;
}

.sobre-content p {
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--fg-muted);
  margin-bottom: 24px;
  transition: color 0.4s;
}

.sobre-content p:first-child {
  font-size: 1.15rem;
  color: var(--fg);
  font-weight: 400;
}

.sobre-photo-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.sobre-photo-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
}

.sobre-photo-frame::before {
  content: '';
  position: absolute;
  top: -14px;
  right: -14px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--purple);
  border-radius: 2px;
  z-index: 0;
  background-color: var(--purple);
}

.sobre-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, transparent 55%);
  border-radius: 2px;
  z-index: 2;
}

.sobre-photo-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  position: relative;
  z-index: 1;
  filter: grayscale(15%);
}

.sobre-photo-dot {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--cyan);
  z-index: 0;
  filter: blur(2px);
}

/* ── APRESENTAÇÃO / FAQ ── */
#apresentacao {
  position: relative;
}

.apresentacao-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}

.apresentacao-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
}

.apresentacao-intro h2 em {
  font-style: italic;
  color: var(--purple);
}

.apresentacao-intro-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--fg-muted);
}

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

.faq-item {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  cursor: pointer;
  transition: border-color 0.4s;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

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

.faq-question h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--fg);
  transition: color 0.3s;
}

.faq-item:hover .faq-question h3 {
  color: var(--cyan);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--fg-faint);
  transition: all 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #000;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer.open {
  max-height: 300px;
  padding-top: 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--fg-muted);
  max-width: 760px;
}

/* ── PRODUTOS ── */
#produtos {
  position: relative;
}

#produtos::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

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

.produto-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s;
  position: relative;
}

.produto-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--purple), var(--cyan));
  transform: scaleX(0);
  transition: transform 0.4s;
}

.produto-card:hover {
  border-color: rgba(91, 79, 192, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

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

.produto-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg,
      var(--prod-placeholder-a) 0%,
      var(--prod-placeholder-b) 50%,
      var(--prod-placeholder-c) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}

.produto-img-placeholder img {
  width: 100%;
  display: block;
}

.produto-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.produto-num {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

.produto-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--fg);
}

.produto-body p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--fg-muted);
  flex: 1;
  margin-bottom: 28px;
}

.btn-download {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--border-mid);
  color: var(--fg-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.btn-download:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

.btn-download svg {
  flex-shrink: 0;
}

/* ── TESTAMENTO ── */
#testamento {
  position: relative;
}

.testamento-box {
  background: linear-gradient(135deg, rgba(91, 79, 192, 0.08) 0%, rgba(91, 79, 192, 0.03) 100%);
  border: 1px solid rgba(91, 79, 192, 0.25);
  border-radius: 4px;
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

html:not(.light) .testamento-box {
  background: linear-gradient(135deg, rgba(91, 79, 192, 0.1) 0%, rgba(0, 229, 255, 0.05) 100%);
}

.testamento-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 79, 192, 0.15) 0%, transparent 70%);
}

.testamento-box::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
}

.testamento-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testamento-box h2 em {
  font-style: italic;
  color: var(--cyan);
}

.testamento-box p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}

.testamento-cta {
  position: relative;
  z-index: 1;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  background-color: var(--purple);
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.4s;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
}

.footer-logo span {
  color: #fff;

}

footer p {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: #fff;
  width: 100%;
  text-align: center;
}

/* ── RESPONSIVO ── */
@media (max-width: 900px) {
  .hero-grid {
    padding: 120px 24px 60px;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre-photo-wrap {
    justify-content: center;
  }

  .sobre-photo-frame {
    max-width: 300px;
  }

  .apresentacao-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .testamento-box {
    padding: 48px 24px;
  }

  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 32px 24px;
  }
}