@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}

:root {
  --maroon-deep: #2b0508;
  --maroon: #560a0f;
  --maroon-light: #7a1119;
  --red: #e81e34;
  --red-bright: #f2133c;
  --gold: #ffd700;
  --gold-soft: rgba(255, 215, 0, 0.55);
  --cream: #f6ece2;
  --ink: #1a0304;
  --line: rgba(255, 215, 0, 0.18);
  --serif: "Playfair Display", "Georgia", serif;
  --sans: "Poppins", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--maroon-deep);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--serif);
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
.public-list li[data-reveal],
.reasons .reason-card[data-reveal] {
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* ---------- Barra de progresso ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 80;
  background: rgba(0, 0, 0, 0.2);
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red-bright), var(--gold));
  transition: width 0.1s linear;
}

/* ---------- Navegação ---------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}
.site-nav.scrolled {
  padding: 12px 28px;
  background: rgba(27, 4, 6, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  color: var(--cream);
}
.brand em {
  font-style: italic;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.94rem;
}
.nav-links a {
  opacity: 0.86;
  transition: opacity 0.2s ease;
}
.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}
.nav-cta {
  background: linear-gradient(180deg, var(--red-bright), var(--red));
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--gold-soft);
  opacity: 1 !important;
}
.nav-toggle {
  display: none;
  position: relative;
  z-index: 75;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Botão flutuante WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #0c1a10;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease;
}
.wa-float:hover {
  transform: translateY(-2px);
}
.wa-float svg {
  width: 22px;
  height: 22px;
  fill: #0c1a10;
}
@media (max-width: 560px) {
  .wa-float span {
    display: none;
  }
  .wa-float {
    padding: 14px;
  }
}

/* ---------- Botão CTA principal ---------- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, var(--red-bright), var(--red));
  color: #fff5f0;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 18px 34px;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(232, 30, 52, 0.35);
  border: 1px solid var(--gold-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(232, 30, 52, 0.45);
}
.cta-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.cta-row {
  display: flex;
  justify-content: center;
  margin: 36px 0;
}

/* ---------- Header / Hero ---------- */
header.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 30%;
  transform: translateY(var(--parallax, 0)) scale(1.08);
  transition: transform 0.1s linear;
}
@media (max-width: 700px) {
  .hero-bg img {
    object-position: 66% 22%;
  }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 3, 4, 0.55) 0%, rgba(27, 3, 4, 0.72) 55%, var(--maroon-deep) 100%),
    radial-gradient(ellipse 900px 500px at 50% -10%, rgba(232, 30, 52, 0.25), transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 24px 60px;
}
.eyebrow {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.18;
  max-width: 840px;
  margin: 0 auto 22px;
}
.hero p.lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgba(246, 236, 226, 0.88);
}
.scroll-cue {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 34px;
  color: rgba(246, 236, 226, 0.65);
  font-size: 0.82rem;
}
.scroll-cue span {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cue 1.8s infinite var(--ease);
}
@keyframes cue {
  0% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.4); opacity: 0.4; }
}

/* ---------- Sections genéricas ---------- */
section {
  padding: 100px 0;
  position: relative;
}
h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.28;
}
.section-motivos h2,
.section-faq h2 {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

/* ---------- Público (sticky + lista) ---------- */
.publico-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.publico-sticky {
  position: sticky;
  top: 32vh;
}
.publico-sticky h2 {
  margin-bottom: 14px;
}
.publico-note {
  color: rgba(246, 236, 226, 0.75);
  max-width: 360px;
}
.public-list {
  list-style: none;
  display: grid;
  gap: 16px;
}
.public-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 22px;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 1.05rem;
}
.public-list li .bullet {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(232, 30, 52, 0.15);
}
@media (max-width: 860px) {
  .publico-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .publico-sticky {
    position: static;
  }
}

/* ---------- Cards de motivos ---------- */
.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 800px) {
  .reasons {
    grid-template-columns: 1fr;
  }
}
.reason-card {
  background: linear-gradient(160deg, rgba(232, 30, 52, 0.1), rgba(255, 215, 0, 0.04));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 28px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.reason-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
}
.reason-card svg {
  width: 42px;
  height: 34px;
  fill: var(--red-bright);
  margin-bottom: 16px;
}
.reason-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.reason-card p {
  color: rgba(246, 236, 226, 0.82);
  font-size: 0.97rem;
}

.urgency {
  text-align: center;
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 30px;
}

/* ---------- Galerias horizontais ---------- */
.section-gallery {
  padding: 90px 0;
}
.section-gallery.alt {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18), transparent);
}
.gallery-head {
  margin-bottom: 36px;
  text-align: center;
}
.gallery-head h2 {
  max-width: 720px;
  margin: 0 auto;
}
.section-tag {
  color: rgba(246, 236, 226, 0.75);
  max-width: 560px;
  margin: 14px auto 0;
}
.hgallery {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 24px 18px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}
.hgallery::-webkit-scrollbar {
  display: none;
}
.hgallery figure {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: min(240px, 62vw);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--maroon);
}
.hgallery img {
  width: 100%;
  height: auto;
  display: block;
}
.hgallery-hint {
  text-align: center;
  color: rgba(246, 236, 226, 0.5);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* ---------- Sobre ---------- */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 800px) {
  .about {
    grid-template-columns: 1fr;
  }
}
.about-photo-wrap {
  position: sticky;
  top: 18vh;
}
.about-photo {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.about-copy h2 {
  margin: 0 0 20px;
}
.about-copy p {
  color: rgba(246, 236, 226, 0.88);
  margin-bottom: 16px;
  font-size: 1.03rem;
}
@media (max-width: 800px) {
  .about-photo-wrap {
    position: static;
  }
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq details {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 6px 22px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 700;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary .plus {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}
.faq summary .plus::before {
  content: "+";
  font-size: 1.1rem;
  line-height: 1;
}
.faq details[open] summary .plus {
  transform: rotate(45deg);
}
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s ease;
  opacity: 0;
}
.faq details[open] .faq-body {
  opacity: 1;
}
.faq-body p {
  color: rgba(246, 236, 226, 0.85);
  padding-bottom: 20px;
  font-size: 0.97rem;
}

/* ---------- Rodapé ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
  color: rgba(246, 236, 226, 0.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 30px;
  align-items: start;
}
.footer-grid p {
  margin-top: 12px;
  max-width: 320px;
  font-size: 0.92rem;
  color: rgba(246, 236, 226, 0.65);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.94rem;
}
.footer-links a:hover {
  color: var(--gold);
}
footer .socials {
  display: flex;
  gap: 18px;
}
footer .socials svg {
  width: 20px;
  height: 20px;
  fill: rgba(246, 236, 226, 0.75);
}
footer .socials a:hover svg {
  fill: var(--gold);
}
@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: rgba(246, 236, 226, 0.55);
}
.footer-bottom button {
  background: none;
  border: 1px solid var(--line);
  color: rgba(246, 236, 226, 0.75);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-bottom button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- Decoração ---------- */
.petala {
  position: absolute;
  width: 70px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}
.petala.p1 {
  top: 96px;
  left: -10px;
  transform: rotate(-10deg) translateY(var(--parallax-slow, 0));
}
.petala.p2 {
  top: 180px;
  right: 20px;
  transform: rotate(20deg) translateY(var(--parallax-slow, 0));
}

/* ---------- Menu mobile ---------- */
@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    background: rgba(20, 3, 4, 0.97);
    backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    border-left: 1px solid var(--line);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-cta {
    margin-top: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .hero-bg img {
    transform: scale(1.08) !important;
  }
}
