/* =============================================
   BRUNA LUCENA — ESSENCE CLUB
   Palette: dark green #0B1A10 · gold #C9A84C · white
   ============================================= */

:root {
  --dark:      #000807;
  --dark-2:    #051a15;
  --dark-3:    #081f18;
  --warm:      #000807;
  --gold:      #C9A84C;
  --gold-light:#e2c474;
  --gold-dark: #a8882e;
  --white:     #ffffff;
  --off-white: #f5f0e8;
  --text-muted:#9dac9e;
  --light-bg:  #f7f4ef;
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ---- UTILITIES ---- */
.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.text-center { text-align: center; }
.text-dark   { color: #1a1a1a; }
.gold        { color: var(--gold); }

/* ---- SECTION BACKGROUNDS ---- */
.section-dark      { background: var(--dark); }
.section-dark-alt  { background: #000807; }
.section-light     { background: var(--light-bg); }
.section-warm      { background: #000807; }
.section-faq       { background: var(--off-white); }

/* ---- TYPOGRAPHY ---- */
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 2rem;
}
.eyebrow-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .75rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    filter var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}
.btn:hover::after { opacity: 1; }

.btn--gold {
  background: var(--gold);
  color: #1a1200;
}
.btn--gold:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(201,168,76,.45), 0 2px 8px rgba(0,0,0,.3);
  filter: brightness(1.08);
}
.btn--gold:active {
  transform: translateY(-1px) scale(1.01);
}

.btn--large {
  padding: 1.1rem 2.8rem;
  font-size: 1.1rem;
}

.btn-arrow {
  display: inline-block;
  transition: transform var(--transition);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* =============================================
   PLACEHOLDERS
   ============================================= */
.placeholder {
  background: linear-gradient(135deg, #0a2020 0%, #102a28 100%);
  border: 1.5px dashed rgba(201,168,76,.4);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,168,76,.6);
  font-size: .8rem;
  text-align: center;
  line-height: 1.4;
}
.placeholder--hero {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
}
.placeholder--card {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius) var(--radius) 0 0;
}
.placeholder--avatar {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  font-size: .65rem;
}
.placeholder--sobre {
  width: 100%;
  min-height: 500px;
  border-radius: var(--radius-lg);
}
.placeholder--logo {
  width: 120px;
  height: 60px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background-image: url('../images/fundo-mentoriabrunalucena.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 69vh;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,8,7,.55);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  flex: 1;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

/* coluna direita: foto PNG da Bruna ancorada na base */
.hero__photo {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: flex-end;
}
.hero__photo-img {
  height: 66vh;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  vertical-align: bottom;
}
.hero__logo-img {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 1.75rem;
}
.hero__content {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  animation: fadeUp .9s ease both;
}
.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 0;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  display: block;
  font-size: 92px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: .85rem;
}
.hero__titulo-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: .85rem;
}
.hero__eyebrow {
  font-size: 20px;
  color: rgba(255,255,255,.68);
  margin-bottom: 2rem;
  line-height: 27px;
  max-width: 415px;
}

/* Botão outline dourado com ícone WhatsApp */
.btn--outline-gold {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 2rem;
  border-radius: 50px;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: #1a1200;
  box-shadow: 0 8px 32px rgba(201,168,76,.4);
  transform: translateY(-3px);
}
.btn-whatsapp {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* =============================================
   TICKER
   ============================================= */
.ticker {
  background: #021d1f;
  border: none;
  padding: 1.8rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  animation: ticker 28s linear infinite;
  will-change: transform;
}
.ticker__item {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  white-space: nowrap;
}
.ticker__star {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  vertical-align: middle;
  margin-inline: 2rem;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   PARA QUEM
   ============================================= */
.para-quem { padding-block: 5rem; }

/* Linha 1: título + texto lado a lado */
.para-quem__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}
.para-quem__header .section-title {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}
.para-quem__header .section-title em {
  font-style: italic;
  color: var(--gold);
}
.para-quem__text {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
  text-align: right;
}

.para-quem__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-bottom: 2.5rem;
}

/* Linha 2: 3 cards full width */
.para-quem__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card-service {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(13, 147, 47, 0.15);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
/* degradê de cima (transparente) para baixo (escuro) */
.card-service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(1,16,17,.7) 60%,
    rgba(1,16,17,.97) 100%
  );
  border-radius: inherit;
  pointer-events: none;
}
.card-service:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.6);
  border-color: #103d34;
}
.card-service__body {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.75rem 2rem;
  text-align: center;
}
.card-service h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .75rem;
  line-height: 1.2;
}
.card-service p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
  line-height: 1.65;
}

/* =============================================
   COMO FUNCIONA
   ============================================= */
.como-funciona { padding-block: 6rem; }
.como-funciona .section-title { margin-bottom: 3rem; }
.funciona__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card-feature {
  background: #030E0C;
  border: 1px solid #1c5858;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.card-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.card-feature:hover {
  transform: translateY(-6px);
  border-color: #1c5858;
  box-shadow:
    0 0 0 1px #1c5858,
    0 0 18px 2px rgba(28, 88, 88, 0.55),
    0 0 40px 6px rgba(28, 88, 88, 0.25),
    0 20px 48px rgba(0,0,0,.5);
}
.card-feature:hover::before { opacity: 1; }
.card-feature__icon {
  width: 76px;
  height: 76px;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.card-feature__icon img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}
.card-feature__icon svg { width: 100%; height: 100%; }
.card-feature h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: .6rem;
  color: #d9b14f;
}
.card-feature p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   DEPOIMENTOS
   ============================================= */
.depoimentos { padding-block: 6rem; }
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.card-depo {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-depo:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.card-depo__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.depo__avatar {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.card-depo__header strong {
  display: block;
  font-size: .95rem;
  color: #1a1a1a;
}
.card-depo__header span {
  display: block;
  font-size: .75rem;
  color: #888;
  margin-top: 2px;
}
.card-depo__quote {
  font-size: .88rem;
  color: var(--gold-dark);
  font-style: italic;
  margin-bottom: .75rem;
  line-height: 1.6;
  border-left: 3px solid var(--gold);
  padding-left: .75rem;
}
.card-depo__body {
  font-size: .82rem;
  color: #555;
  line-height: 1.6;
}

/* =============================================
   SOBRE
   ============================================= */
.sobre { padding-block: 6rem; }
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

/* frame da foto com borda arredondada */
.sobre__image-frame {
  border: 1px solid #1c5858;
  border-radius: 18px;
  padding: 51px 8px 0 8px;
  background: #000807;
}
.sobre__image-frame img {
  width: 91%;
  display: block;
  border-radius: 12px;
  margin: auto;
}

/* eyebrow "SOBRE" */
.sobre__eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  margin-bottom: .4rem;
}

/* título "BRUNA LUCENA" */
.sobre__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: .04em;
  line-height: 1.1;
  text-transform: uppercase;
}

/* primeiro parágrafo em destaque com borda esquerda dourada */
.sobre__quote {
  background: #0b1e18;
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin: 0 0 1.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.7;
}

.sobre__content p {
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* =============================================
   PLAYERS
   ============================================= */
.players { padding-block: 3rem; }

.players__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--gold);
  border-radius: 18px;
  padding: 2rem 2.5rem;
  background: #000807;
}

.players__title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 32px;
  margin: 0;
}

.players__logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.players__logo {
  height: 100px;
  width: auto;
  border-radius: 10px;
  object-fit: contain;
}

/* =============================================
   FAQ
   ============================================= */
.faq { padding-block: 6rem; }
.faq__container { max-width: 780px; }
.faq .section-title { margin-bottom: 3rem; }
.faq__list { display: flex; flex-direction: column; gap: .75rem; }
.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow var(--transition);
}
.faq__item:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 500;
  color: #1a1a1a;
  text-align: left;
  transition: color var(--transition);
  gap: 1rem;
}
.faq__question:hover { color: var(--gold-dark); }
.faq__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  transition: transform var(--transition), background var(--transition);
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: #1a1200;
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}
.faq__icon::before { width: 10px; height: 2px; }
.faq__icon::after  { width: 2px; height: 10px; }
.faq__question[aria-expanded="true"] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq__question[aria-expanded="true"] .faq__icon {
  background: var(--dark);
}
.faq__question[aria-expanded="true"] .faq__icon::before {
  background: var(--gold);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s ease;
  padding: 0 1.5rem;
}
.faq__answer.open {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.faq__answer p {
  font-size: .88rem;
  color: #555;
  line-height: 1.7;
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final {
  padding-block: 6rem;
  position: relative;
  overflow: hidden;
}
#particles-js {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.cta-final .container {
  position: relative;
  z-index: 1;
}
.cta-final__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}
.cta-final__sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #000c0c;
  padding-block: 2rem;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,.1);
}
.footer__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: .5rem;
}
.footer__copy {
  font-size: .78rem;
  color: var(--text-muted);
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity .7s cubic-bezier(.4,0,.2,1),
    transform .7s cubic-bezier(.4,0,.2,1);
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
  }
  .hero__content { padding-bottom: 0; }
  .hero__titulo-img { width: 84%; height: auto; }
  .hero__title { font-size: 1.8rem; }
  .hero__title em { font-size: 3.5rem; }
  .hero__photo {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 1.5rem;
  }
  .hero__photo-img {
    height: auto;
    width: 85%;
    max-width: 320px;
  }

  .para-quem__header { grid-template-columns: 1fr; gap: 1rem; }
  .para-quem__text { text-align: left; }
  .para-quem__cards { grid-template-columns: repeat(3, 1fr); }

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

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

  .sobre__grid { grid-template-columns: 1fr; }
  .sobre__image { order: -1; }
  .placeholder--sobre { min-height: 280px; }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 640px) {
  .section-title { font-size: 1.8rem; }

  .hero__title { font-size: 3.2rem; }
  .placeholder--hero { min-height: 260px; }

  .para-quem__header { grid-template-columns: 1fr; }
  .para-quem__cards { grid-template-columns: 1fr; }

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

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

  .players__box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .players__title {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .players__logos {
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .players__logo {
    height: 70px;
  }

  .btn { font-size: .9rem; padding: .8rem 1.6rem; }
  .btn--large { font-size: 1rem; padding: 1rem 2rem; }

  .sobre__grid { gap: 2rem; }

  .faq__question { font-size: .88rem; }
}
