/* ============================================================
   CONEXÕES EM FERNANDO DE NORONHA — style.css
   ============================================================ */

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* TOKENS */
:root {
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark:  #8B6914;
  --sand:       #F5EDD6;
  --sand-light: #FAF6EE;
  --ocean:      #0A3D5C;
  --ocean-mid:  #1A6B8A;
  --white:      #FFFFFF;
  --off-white:  #F9F7F3;
  --dark:       #0D0D0D;
  --text:       #2A2A2A;
  --text-light: #5C5C5C;
  --ff-serif:   'Playfair Display', Georgia, serif;
  --ff-edit:    'Cormorant Garamond', Georgia, serif;
  --ff-sans:    'Montserrat', sans-serif;
  --max:        1200px;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-sans); color: var(--text); background: var(--off-white); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 40px;
  display: flex; justify-content: space-between; align-items: center;
  transition: all .4s ease;
}
nav.scrolled {
  background: rgba(10,61,92,.96);
  backdrop-filter: blur(20px);
  padding: 12px 40px;
  box-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.nav-logo img { height: 58px; width: auto; object-fit: contain; transition: height .4s; }
nav.scrolled .nav-logo img { height: 42px; width: auto; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark); font-family: var(--ff-sans);
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 12px 28px;
  border: 1px solid transparent; transition: all .3s;
}
.nav-cta:hover {
  background: transparent;
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero.webp') center 30% / cover no-repeat;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,20,35,.25) 0%, rgba(5,20,35,.55) 50%, rgba(5,20,35,.8) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  padding: 0 20px; max-width: 900px;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 22px;
  animation: fadeUp .9s ease .3s both;
}
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.6rem, 6.5vw, 6.5rem);
  font-weight: 700; line-height: 1.05;
  margin-bottom: 10px;
  animation: fadeUp .9s ease .55s both;
}
.hero-title em { color: var(--gold-light); font-style: italic; }
.hero-sub {
  font-family: var(--ff-serif); font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 10px;
  animation: fadeUp .9s ease .7s both;
}
.hero-tagline {
  font-family: var(--ff-edit);
  font-size: clamp(.95rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,.65);
  max-width: 640px; margin: 0 auto 36px; line-height: 1.75;
  animation: fadeUp .9s ease .85s both;
}
.hero-badges {
  display: flex; justify-content: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 40px;
  animation: fadeUp .9s ease 1s both;
}
.badge {
  border: 1px solid rgba(201,168,76,.55);
  color: var(--gold-light); font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 18px; background: rgba(201,168,76,.08);
  backdrop-filter: blur(8px);
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.45); font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; animation: bounce 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 46px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  background-size: 200% 200%; background-position: left;
  color: var(--dark); font-family: var(--ff-sans);
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; padding: 18px 44px;
  transition: all .4s ease; border: none; cursor: pointer;
}
.btn-gold:hover {
  background-position: right;
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(201,168,76,.4);
  color: var(--dark);
}
.btn-gold svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 12px;
  border: 2px solid var(--gold); color: var(--gold);
  font-family: var(--ff-sans); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 16px 42px; transition: all .3s;
}
.btn-outline:hover {
  background: var(--gold); color: var(--dark);
}
.btn-outline svg { width: 20px; height: 20px; fill: currentColor; }

/* WhatsApp SVG helper */
.wa-svg { display: inline-block; vertical-align: middle; }

/* ============================================================
   SHARED LAYOUT
   ============================================================ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.section-label {
  font-size: 10px; font-weight: 600; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; display: block;
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.5vw, 3.4rem);
  font-weight: 700; line-height: 1.15; color: var(--ocean);
}
.section-title em  { color: var(--gold); font-style: italic; }
.section-title.wh  { color: var(--white); }
.gold-divider {
  display: flex; align-items: center; gap: 20px;
  padding: 0 40px;
}
.gold-divider::before, .gold-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.gold-divider span { color: var(--gold); font-size: 16px; }

/* REVEAL ANIMATION */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  padding: 110px 40px;
  background: var(--off-white); text-align: center;
}
.video-section .lead {
  font-family: var(--ff-edit); font-size: 1.2rem; color: var(--text-light);
  max-width: 580px; margin: 16px auto 48px; line-height: 1.8;
}
.video-wrap {
  position: relative; max-width: 840px; margin: 0 auto 48px;
  padding-bottom: 47.25%; /* 16:9 of 840px */
  background: var(--ocean);
  box-shadow: 0 40px 100px rgba(10,61,92,.25);
}
.video-wrap video {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover;
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais {
  padding: 110px 0;
  background: var(--ocean); position: relative; overflow: hidden;
}
.diferenciais::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/hero.webp') center/cover no-repeat;
  opacity: .07;
}
.diferenciais-inner { position: relative; z-index: 1; }
.diferenciais-header { text-align: center; margin-bottom: 72px; }
.diferenciais-header .section-label { color: var(--gold-light); }
.diferenciais-header .lead {
  font-family: var(--ff-edit); font-size: 1.15rem;
  color: rgba(255,255,255,.6); max-width: 560px; margin: 18px auto 0; line-height: 1.8;
}
.diff-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
}
.diff-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.14);
  padding: 48px 36px; text-align: center;
  transition: background .4s; cursor: default;
}
.diff-card:hover { background: rgba(255,255,255,.09); }
.diff-icon { font-size: 38px; margin-bottom: 20px; display: block; }
.diff-card h3 {
  font-family: var(--ff-serif); font-size: 1.2rem;
  color: var(--white); margin-bottom: 10px;
}
.diff-card p { font-size: .87rem; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ============================================================
   JORNADA 5 DIAS
   ============================================================ */
.jornada { padding: 110px 0; background: var(--sand-light); }
.jornada-header { text-align: center; margin-bottom: 72px; }
.days-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
  position: relative;
}
.days-grid::before {
  content: ''; position: absolute; top: 88px; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.day-card { text-align: center; padding: 0 12px; }
.day-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white); font-family: var(--ff-serif);
  font-size: 1.25rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(201,168,76,.4);
  position: relative; z-index: 2;
}
.day-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  margin-bottom: 18px; transition: filter .4s;
}
.day-card:hover .day-img { filter: brightness(1.08); }
.day-tag {
  display: inline-block; background: var(--gold);
  color: var(--dark); font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; margin-bottom: 10px;
}
.day-title {
  font-family: var(--ff-serif); font-size: .95rem;
  font-weight: 600; color: var(--ocean); margin-bottom: 6px;
}
.day-desc { font-size: .8rem; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   INCLUSO
   ============================================================ */
.incluso { padding: 110px 0; background: var(--white); }
.incluso-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.incluso-text .lead {
  font-family: var(--ff-edit); font-size: 1.1rem;
  line-height: 1.9; color: var(--text-light); margin: 20px 0 30px;
}
.item-list { list-style: none; }
.item-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.06);
}
.item-list li:last-child { border: none; }
.item-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.item-text strong { display: block; font-weight: 600; color: var(--ocean); margin-bottom: 2px; font-size: .9rem; }
.item-text span { font-size: .8rem; color: var(--text-light); }
.incluso-img {
  height: 520px; object-fit: cover;
  box-shadow: 28px 28px 0 var(--sand);
}
.obs-box {
  margin-top: 24px; padding: 20px 24px;
  background: var(--sand-light);
  border-left: 3px solid var(--gold);
  font-size: .85rem; color: var(--text-light); line-height: 1.7;
}
.obs-box strong { color: var(--ocean); }

/* ============================================================
   EMOCIONAL (full-bleed quote)
   ============================================================ */
.emocional {
  position: relative; min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.emocional-bg {
  position: absolute; inset: 0;
  background: url('../images/bar.webp') center/cover no-repeat;
}
.emocional-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,20,35,.45), rgba(5,20,35,.72));
}
.emocional-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  padding: 80px 40px; max-width: 780px;
}
.emocional-content .quote {
  font-family: var(--ff-serif); font-style: italic;
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  line-height: 1.3; margin-bottom: 16px;
}
.emocional-content .quote em { color: var(--gold-light); font-style: normal; }
.emocional-content .sub {
  font-family: var(--ff-edit); font-size: 1.1rem;
  color: rgba(255,255,255,.65); margin-bottom: 48px; line-height: 1.8;
}

/* ============================================================
   MARCELO
   ============================================================ */
.marcelo-section {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--ocean); min-height: 620px;
}
.marcelo-img-wrap {
  background: url('../images/marcelo.webp') top center/cover no-repeat;
  position: relative; min-height: 500px;
}
.marcelo-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--ocean));
}
.marcelo-bio {
  padding: 80px 72px 80px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.marcelo-bio .section-label { color: var(--gold-light); }
.marcelo-bio .section-title { color: var(--white); margin-bottom: 24px; }
.marcelo-bio p {
  font-family: var(--ff-edit); font-size: 1.05rem;
  color: rgba(255,255,255,.7); line-height: 1.9; margin-bottom: 14px;
}
.marcelo-bio ul {
  list-style: none; margin: 10px 0 30px;
}
.marcelo-bio ul li {
  padding: 7px 0; font-family: var(--ff-sans);
  font-size: .88rem; color: rgba(255,255,255,.65);
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; gap: 10px;
}
.marcelo-bio ul li::before { content: '✦'; color: var(--gold); font-size: 10px; }
.stats-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px;
}
.stat { border-left: 2px solid var(--gold); padding-left: 18px; }
.stat-n { font-family: var(--ff-serif); font-size: 2.2rem; color: var(--gold-light); line-height: 1; }
.stat-l { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 4px; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos { padding: 110px 0; background: var(--white); }
.depo-header { text-align: center; margin-bottom: 64px; }
.depo-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
}
.depo-card {
  padding: 46px 36px; background: var(--sand-light);
  border-top: 3px solid transparent; position: relative;
  transition: border-color .3s;
}
.depo-card:hover { border-top-color: var(--gold); }
.depo-card::before {
  content: '"'; font-family: var(--ff-serif); font-size: 110px;
  color: var(--gold); opacity: .15; position: absolute;
  top: -18px; left: 18px; line-height: 1; pointer-events: none;
}
.depo-card p {
  font-family: var(--ff-edit); font-style: italic;
  font-size: 1.05rem; color: var(--text); line-height: 1.8;
  margin-bottom: 28px; position: relative; z-index: 1;
}
.depo-author { display: flex; align-items: center; gap: 12px; }
.depo-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--ocean-mid));
  color: var(--white); font-family: var(--ff-serif);
  font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.depo-name { font-weight: 600; font-size: .88rem; color: var(--ocean); }
.depo-loc  { font-size: .78rem; color: var(--text-light); letter-spacing: 1px; }
.stars     { color: var(--gold); font-size: 12px; margin-top: 3px; }

/* ============================================================
   INVESTIMENTO
   ============================================================ */
.investimento {
  padding: 110px 0; text-align: center;
  background: linear-gradient(135deg, var(--ocean), #0d4f70);
  position: relative; overflow: hidden;
}
.investimento::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/sancho.webp') center/cover no-repeat;
  opacity: .07;
}
.investimento-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; padding: 0 40px; }
.investimento .section-label { color: var(--gold-light); }
.investimento .section-title { color: var(--white); margin-bottom: 16px; }
.investimento .lead {
  font-family: var(--ff-edit); font-size: 1.1rem;
  color: rgba(255,255,255,.65); margin-bottom: 56px; line-height: 1.8;
}
.price-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.3);
  padding: 56px 40px; margin-bottom: 36px;
  backdrop-filter: blur(16px);
}
.price-from {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 12px;
}
.price-amount {
  font-family: var(--ff-serif); font-weight: 700;
  font-size: clamp(3rem, 6vw, 5rem); color: var(--white); line-height: 1;
}
.price-amount sup { font-size: .4em; vertical-align: super; }
.price-inst {
  font-size: .9rem; color: rgba(255,255,255,.55); margin: 8px 0 28px;
}
.price-note {
  font-size: .78rem; color: rgba(255,255,255,.35);
  letter-spacing: 1px; text-transform: uppercase;
}
.price-divider { width: 60px; height: 1px; background: var(--gold); margin: 24px auto; }

/* ============================================================
   ESCASSEZ
   ============================================================ */
.escassez { padding: 90px 0; background: var(--dark); text-align: center; }
.escassez-inner { max-width: 680px; margin: 0 auto; padding: 0 40px; }
.escassez .section-label { color: var(--gold); }
.escassez-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  color: var(--white); margin: 12px 0 20px; line-height: 1.2;
}
.escassez-title em { color: var(--gold-light); font-style: italic; }
.escassez p {
  font-family: var(--ff-edit); font-size: 1.1rem;
  color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 44px;
}
.spots {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(201,168,76,.4);
  padding: 14px 28px; margin-bottom: 44px;
  color: var(--gold-light); font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: #ff4444;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.65); }
}

/* ============================================================
   ENCERRAMENTO
   ============================================================ */
.encerramento {
  position: relative; min-height: 85vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.enc-bg {
  position: absolute; inset: 0;
  background: url('../images/festival.webp') center/cover no-repeat;
}
.enc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,20,35,.5), rgba(5,20,35,.82));
}
.enc-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  padding: 80px 40px; max-width: 760px;
}
.enc-tag {
  font-family: var(--ff-edit); font-size: 1rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 22px;
}
.enc-quote {
  font-family: var(--ff-serif); font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.9rem);
  line-height: 1.35; margin-bottom: 16px;
}
.enc-quote em { color: var(--gold-light); font-style: normal; }
.enc-sub {
  font-family: var(--ff-edit); font-size: 1.1rem;
  color: rgba(255,255,255,.65); margin-bottom: 56px; line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #070707; padding: 54px 40px;
  text-align: center; color: rgba(255,255,255,.3);
  font-family: var(--ff-sans); font-size: .78rem; letter-spacing: 1px;
}
footer img { height: 60px; width: auto; object-fit: contain; margin: 0 auto 20px; opacity: .65; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .diff-grid       { grid-template-columns: repeat(2,1fr); }
  .days-grid       { grid-template-columns: repeat(3,1fr); gap: 16px; }
  .days-grid::before { display: none; }
  .incluso-inner   { grid-template-columns: 1fr; }
  .incluso-img     { height: 280px; box-shadow: none; width: 100%; }
  .marcelo-section { grid-template-columns: 1fr; }
  .marcelo-img-wrap { min-height: 380px; }
  .marcelo-img-wrap::after { background: linear-gradient(to bottom, transparent 50%, var(--ocean)); }
  .marcelo-bio     { padding: 56px 40px; }
  .depo-grid       { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 768px) {
  nav              { padding: 14px 20px; }
  nav.scrolled     { padding: 10px 20px; }
  .nav-cta         { display: none; }
  .container       { padding: 0 20px; }
  .video-section, .jornada, .incluso, .depoimentos,
  .investimento-inner, .escassez-inner { padding-left: 20px; padding-right: 20px; }
  .diff-grid       { grid-template-columns: 1fr; }
  .days-grid       { grid-template-columns: repeat(2,1fr); }
  .stats-row       { grid-template-columns: 1fr 1fr; }
  .gold-divider    { padding: 0 20px; }
  .btn-gold, .btn-outline { padding: 15px 24px; font-size: 10px; }
  .enc-content, .emocional-content { padding: 60px 20px; }
}
@media (max-width: 480px) {
  .days-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 8px; }
}
