/* ============================================
   Bete Costa Assessoria de Eventos — LP
   ============================================ */

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #faf7f1;
  --color-dark: #2b2b2b;
  --color-dark-soft: #4a4a4a;
  --color-gold: #b4893f;
  --color-gold-light: #e8cf9a;
  --color-gold-dark: #8a6a1f;
  --color-border: #e7e0d3;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;

  --gold-gradient: linear-gradient(120deg, #8a6a1f 0%, #d9b969 35%, #f3e2b0 55%, #b4893f 100%);

  --container-width: 1180px;
  --section-padding: clamp(64px, 9vw, 120px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-bottom: 14px;
}

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

.section { padding: var(--section-padding) 0; }
.section--alt { background: var(--color-bg-alt); }

.section__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section__head--left {
  text-align: left;
  margin: 0 0 32px;
  max-width: none;
}

.section__title {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin-bottom: 18px;
}

.section__lead {
  font-size: 1.05rem;
  color: var(--color-dark-soft);
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn--gold {
  background: var(--gold-gradient);
  color: #201803;
  box-shadow: 0 8px 24px rgba(180, 137, 63, 0.35);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(180, 137, 63, 0.45); }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.12); }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: linear-gradient(180deg, rgba(10,8,4,0.55) 0%, rgba(10,8,4,0.0) 100%);
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.header.is-scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(6px);
  padding: 8px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.header__logo {
  height: 68px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.header.is-scrolled .header__logo { filter: none; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.55);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width 0.25s ease;
}
.nav__link:hover::after { width: 100%; }

.header.is-scrolled .nav__link {
  color: var(--color-dark);
  text-shadow: none;
}

.nav__link--cta {
  background: var(--gold-gradient);
  color: #201803 !important;
  text-shadow: none !important;
  padding: 10px 20px;
  border-radius: 2px;
}
.nav__link--cta::after { display: none; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.3s ease;
}
.header.is-scrolled .nav__toggle span {
  background: var(--color-dark);
  box-shadow: none;
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15,12,6,0.72) 0%, rgba(15,12,6,0.42) 32%, rgba(15,12,6,0.15) 58%, rgba(15,12,6,0.04) 82%),
    linear-gradient(0deg, rgba(15,12,6,0.35) 0%, rgba(15,12,6,0) 22%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 130px;
  max-width: 760px;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 24px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
}
.hero__title em { font-style: italic; color: var(--color-gold-light); }

.hero__subtitle {
  font-size: 1.15rem;
  max-width: 560px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 10px rgba(0,0,0,0.45);
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;
}
.hero__scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--color-gold-light);
  border-radius: 2px;
  animation: scrollDot 1.6s ease infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 22px; }
}

/* ============================================
   SOBRE
   ============================================ */
.sobre__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.sobre__text p { margin-bottom: 16px; color: var(--color-dark-soft); }
.sobre__text .section__lead { color: var(--color-dark); font-size: 1.15rem; margin-bottom: 20px; }

.sobre__media img {
  border-radius: 4px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.18);
}

/* ============================================
   BLOCO EMOCIONAL
   ============================================ */
.emotional {
  background: var(--color-dark);
  color: #f4efe4;
  padding: var(--section-padding) 0;
}
.emotional__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.emotional__media img {
  border-radius: 4px;
  filter: grayscale(0.25) contrast(1.05);
  box-shadow: 0 24px 50px rgba(0,0,0,0.45);
}
.emotional__inner {
  max-width: 560px;
  text-align: left;
}
.emotional__kicker {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: 30px;
}
.emotional__line {
  font-size: 1.05rem;
  color: rgba(244,239,228,0.75);
  margin-bottom: 10px;
}
.emotional__line--gold {
  color: var(--color-gold-light);
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.emotional__line--final {
  margin-top: 24px;
  color: #f4efe4;
  font-size: 1.15rem;
}

/* ============================================
   CHECKLIST
   ============================================ */
/* ============================================
   EQUIPE
   ============================================ */
.team {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.team__photos {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
  align-items: start;
}

.team__photo-stack {
  display: grid;
  grid-template-rows: auto auto;
  gap: 20px;
}

.team__photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
}
.team__photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.team__photo:hover img { transform: scale(1.05); }

.team__photo .team__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Coluna dedicada ao vídeo: mantém a proporção vertical (retrato) sem cortar a imagem */
.team__video {
  display: flex;
  flex-direction: column;
}
.team__video-frame {
  height: 460px;
  aspect-ratio: 9 / 16;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
}
.team__video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}
.team__video .team__caption {
  padding-top: 10px;
  font-size: 0.82rem;
  color: var(--color-dark-soft);
  font-weight: 600;
  text-align: center;
}

.diferenciais__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 32px;
  max-width: 960px;
  margin: 0 auto;
}
.checklist--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: none;
  margin: 0;
}
.checklist__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 0.95rem;
}
.checklist__icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #201803;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ============================================
   MISSÃO
   ============================================ */
.missao__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.missao__grid p { color: var(--color-dark-soft); margin-bottom: 14px; }
.missao__label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-dark) !important;
  margin-bottom: 20px !important;
}
.missao__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.98rem;
}
.missao__row strong { color: var(--color-gold-dark); font-weight: 600; white-space: nowrap; }
.missao__final {
  margin-top: 22px !important;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-dark) !important;
}

/* ============================================
   EVENTOS
   ============================================ */
.event-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 40px;
}
.event-card {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.event-card img[src*="capa-aniversario"] { object-position: left; }
.event-card:hover img { transform: scale(1.06); }
.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
}
.event-card__label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 22px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.event-tags__title {
  font-weight: 600;
  margin-right: 6px;
  color: var(--color-dark-soft);
}
.tag {
  padding: 9px 18px;
  border: 1px solid var(--color-gold);
  color: var(--color-gold-dark);
  border-radius: 30px;
  font-size: 0.85rem;
}

/* ============================================
   GALERIA
   ============================================ */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-dark-soft);
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover { border-color: var(--color-gold); color: var(--color-gold-dark); }
.filter-btn.is-active {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: #fff;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery__item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item.is-hidden { display: none; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15,12,8,0.94);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 88vw;
  max-height: 84vh;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.25s ease;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

/* ============================================
   DEPOIMENTOS
   ============================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-gold);
  border-radius: 4px;
  padding: 30px 32px;
}
.testimonial p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-dark);
  margin-bottom: 16px;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-gold-dark);
}
.testimonial cite span {
  font-weight: 400;
  color: var(--color-dark-soft);
}

/* ============================================
   POR QUE ESCOLHER
   ============================================ */
.porque__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.porque { max-width: 520px; }
.porque p { color: var(--color-dark-soft); margin-bottom: 14px; }
.porque__media img {
  border-radius: 4px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.18);
}

/* ============================================
   CTA FINAL / CONTATO
   ============================================ */
.cta {
  position: relative;
  padding: var(--section-padding) 0;
  color: #fff;
  overflow: hidden;
}
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15,12,8,0.94) 0%, rgba(15,12,8,0.86) 55%, rgba(15,12,8,0.7) 100%);
}

.cta__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.cta__title {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin-bottom: 20px;
}
.cta__text {
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

/* ---------- Form ---------- */
.form {
  background: rgba(255,255,255,0.97);
  color: var(--color-dark);
  border-radius: 6px;
  padding: 36px;
}
.form__title {
  font-size: 1.5rem;
  margin-bottom: 22px;
}
.form__row { margin-bottom: 18px; }
.form__row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  color: var(--color-dark-soft);
}
.form__row input,
.form__row select,
.form__row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: #fff;
  color: var(--color-dark);
}
.form__row input:focus,
.form__row select:focus,
.form__row textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}
.form__honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form__submit { width: 100%; margin-top: 6px; }
.form__feedback {
  margin-top: 14px;
  font-size: 0.88rem;
  min-height: 1.2em;
}
.form__feedback.is-success { color: #2f7d4f; }
.form__feedback.is-error { color: #b0413e; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-dark);
  color: rgba(244,239,228,0.7);
  padding: 56px 0 30px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.footer__logo { height: 110px; margin-bottom: 4px; }
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 0.85rem;
}
.footer__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(244,239,228,0.3);
  color: var(--color-gold-light);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}
.social-icon svg { width: 19px; height: 19px; }
.social-icon:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #201803;
  transform: translateY(-2px);
}
.footer__copy {
  font-size: 0.78rem;
  color: rgba(244,239,228,0.45);
  margin-top: 10px;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .sobre__grid,
  .missao__grid,
  .porque__grid,
  .emotional__grid,
  .diferenciais__grid,
  .cta__content { grid-template-columns: 1fr; }

  .sobre__media { order: -1; }
  .porque__media { order: -1; }
  .porque { max-width: none; }
  .emotional__inner { max-width: none; text-align: center; }
  .emotional__media { max-width: 360px; margin: 0 auto; }
  .section__head--left { text-align: center; margin-bottom: 40px; }
  .checklist--2col { grid-template-columns: repeat(2, 1fr); }

  .team { grid-template-columns: 1fr; justify-items: center; }
  .team__photos { grid-template-columns: 1fr 1fr; width: 100%; }
  .team__video-frame { height: 340px; margin: 0 auto; }

  .checklist { grid-template-columns: repeat(2, 1fr); }
  .event-cards { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
}

/* Menu: com 8 itens + CTA, o cabeçalho não cabe mais numa linha abaixo de 1200px */
@media (max-width: 1200px) {
  .nav { position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 80vw);
    background: #fff; box-shadow: -10px 0 30px rgba(0,0,0,0.12);
    transform: translateX(100%); transition: transform 0.35s ease; padding: 100px 32px 40px; }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 22px; }
  .nav .nav__link { color: var(--color-dark); text-shadow: none; }
  .nav__toggle { display: flex; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .header__logo { height: 56px; }
}

@media (max-width: 720px) {
  .team__photos { grid-template-columns: 1fr; }
  .team__video-frame { height: 320px; }

  .event-cards { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .checklist { grid-template-columns: 1fr; }
  .missao__row { flex-direction: column; gap: 4px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta__content { gap: 36px; }
  .form { padding: 26px; }
}
