@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body.menu-open {
  overflow: hidden;
}

/* ==========================================================================
   Header Estrutural Base
   ========================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  padding-top: env(safe-area-inset-top);
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
}
.header.is-scrolled .header-main {
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(3, 88, 6, 0.05);
  padding: 12px 0;
}
.header.is-scrolled .header__logo a {
  color: #035806;
}
.header.is-scrolled .header__menu a {
  color: #1e293b;
}
.header.is-scrolled .header__toggle span {
  background: #035806 !important;
}

.header-main {
  padding: 24px 0;
  transition: all 0.4s ease;
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo: Recuada e centralizada harmonicamente no desktop */
.header__logo {
  padding-left: 60px;
  transition: padding 0.4s ease;
}
.header__logo .custom-logo-link {
  display: flex;
  align-items: center;
}
.header__logo .custom-logo {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   Menu Navegação DESKTOP (Padrão)
   ========================================================================== */
.header__nav {
  position: absolute;
  top: 50%;
  right: calc((100% - 1200px) / 2 + 60px);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 40px;
  z-index: 1010;
}

.header__menu {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__menu a {
  padding: 10px 16px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 400;
  font-family: "Montserrat";
}

.header__cta .btn {
  font-family: "Lora";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  height: 48px;
  border-radius: 50px;
  background: #035806;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.header__cta .btn:hover {
  background: rgb(4.3813186813, 128.5186813187, 8.7626373626);
}

/* ==========================================================================
   Botão de Alternância (Hambúrguer / X)
   ========================================================================== */
.header__toggle {
  display: none; /* Invisível no desktop por padrão */
  position: absolute;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 2000;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.header__toggle span {
  width: 20px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Estado Ativo: Vira X e flutua fixo com alinhamento vertical idêntico */
.header__toggle.is-active {
  position: fixed;
  top: calc(30px + env(safe-area-inset-top)) !important;
  transform: translateY(0);
  right: 24px !important;
  background: #fdfbf7 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.header__toggle.is-active span {
  background: #035806 !important;
}
.header__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.header__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Overlay Traseiro */
.header-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  z-index: 990;
  transition: all 0.4s ease;
}
.header-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   Responsividade Mobile (Mestre)
   ========================================================================== */
@media (max-width: 992px) {
  .header-main {
    padding: 16px 0;
  }
  .header__logo {
    padding-left: 0;
  }
  /* O Hambúrguer agora aparece perfeitamente centralizado verticalmente */
  .header__toggle {
    display: flex;
    position: absolute;
    top: calc(30px + env(safe-area-inset-top));
    transform: translateY(0);
    right: 24px;
  }
  /* CORREÇÃO: Transforma o menu desktop em barra lateral mobile oculta por padrão */
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    transform: translateX(100%); /* Esconde o menu para a direita */
    width: 340px;
    max-width: 85vw;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    background: #fdfbf7;
    box-shadow: -15px 0 50px rgba(3, 88, 6, 0.1);
    padding: calc(110px + env(safe-area-inset-top)) 32px calc(40px + env(safe-area-inset-bottom));
    z-index: 1990;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    /* Remove o alinhamento absoluto central do desktop */
    transform-origin: right;
  }
  /* Quando o JavaScript adiciona .is-open, o menu aparece sem vazar nada por trás */
  .header__nav.is-open {
    transform: translateX(0);
  }
  .header__menu {
    flex-direction: column;
    width: 100%;
    margin: auto 0;
    gap: 0;
  }
  .header__menu a {
    display: block;
    color: #1e293b;
    font-size: 1.25rem;
    padding: 14px 0;
    border-bottom: 1px solid rgba(3, 88, 6, 0.06);
  }
  .header__cta {
    width: 100%;
    margin-top: auto;
  }
  .header__cta .btn {
    width: 100%;
    height: 54px;
  }
}
/* Pequenos Ajustes de Margem para Telas Super Pequenas */
@media (max-width: 576px) {
  .custom-logo {
    max-height: 48px;
  }
  .header__toggle {
    right: 16px;
    top: calc(24px + env(safe-area-inset-top));
  }
  .header__toggle.is-active {
    right: 16px !important;
    top: calc(24px + env(safe-area-inset-top)) !important;
  }
}
/* ==========================================================================
   BUTTON CTA MAGNÉTICO (A Porta para a Transformação)
   ========================================================================== */
.header__cta {
  position: relative;
  display: inline-block;
  padding: 20px;
  margin: -20px;
  z-index: 10;
}
.header__cta .btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: #012C03;
  background: linear-gradient(135deg, #FEF800 0%, #D6980B 100%);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  outline: none;
  will-change: transform, box-shadow;
  box-shadow: 0 0 0 0 rgba(214, 152, 11, 0.4), 0 10px 25px rgba(214, 152, 11, 0.15);
  animation: ctaRespiroEmanacao 4s ease-in-out infinite;
  transition: background 0.5s ease, box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.header__cta .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  transition: none;
}
.header__cta .btn-primary:hover {
  background: linear-gradient(135deg, #ffffff 0%, #FEF800 50%, #D6980B 100%);
  box-shadow: 0 0 0 8px rgba(214, 152, 11, 0), 0 20px 45px rgba(214, 152, 11, 0.4);
  animation-play-state: paused;
}
.header__cta .btn-primary:hover::before {
  left: 150%;
  transition: left 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.header__cta .btn-primary:active {
  transform: scale(0.96);
  box-shadow: 0 8px 20px rgba(214, 152, 11, 0.25);
}

/* ==========================================================================
   KEYFRAMES (Física Mental de Calmaria)
   ========================================================================== */
@keyframes ctaRespiroEmanacao {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(214, 152, 11, 0.4), 0 10px 25px rgba(214, 152, 11, 0.15);
  }
  50% {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 0 12px rgba(214, 152, 11, 0), 0 16px 35px rgba(214, 152, 11, 0.25);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(214, 152, 11, 0), 0 10px 25px rgba(214, 152, 11, 0.15);
  }
}
/* ==========================================================================
   FOOTER (Céu Noturno Acolhedor & Ondas Dinâmicas do Mar)
   ========================================================================== */
.footer {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  margin-top: -120px;
  padding: 180px 0 50px;
  color: #ffffff;
  isolation: isolate;
  background: radial-gradient(circle at top center, rgba(254, 248, 0, 0.05), transparent 40%), linear-gradient(180deg, transparent 0px, transparent 100px, #023A04 110px, #012603 60%, #001401 100%);
  /* --------------------------------------------------------------------------
     ONDA ÚNICA NA BORDA SUPERIOR (Responsiva e Conectada)
     -------------------------------------------------------------------------- */
}
.footer__waves {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 160px;
  z-index: 1;
  pointer-events: none;
}
.footer__waves .wave-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.footer__waves .wave-path {
  will-change: d;
  fill: #023A04;
}
.footer {
  /* --------------------------------------------------------------------------
     ELEMENTOS ENERGÉTICOS (Auroras e Orbes Flutuantes)
     -------------------------------------------------------------------------- */
}
.footer__glow {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 248, 0, 0.04), transparent 70%);
  pointer-events: none;
  z-index: 1;
  will-change: transform, opacity;
  animation: auroraRespiro 12s ease-in-out infinite;
}
.footer::after {
  content: "";
  position: absolute;
  top: 20%;
  left: -250px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03), transparent 70%);
  pointer-events: none;
  z-index: 1;
  animation: footerFloat 16s ease-in-out infinite;
}
.footer .container {
  position: relative;
  z-index: 2;
}
.footer .container::before {
  content: "";
  position: absolute;
  right: -300px;
  bottom: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 152, 11, 0.03), transparent 70%);
  pointer-events: none;
  z-index: -1;
  animation: footerFloatReverse 20s ease-in-out infinite;
}
.footer {
  /* --------------------------------------------------------------------------
     BLOCO DO TOPO (Chamada para a Jornada)
     -------------------------------------------------------------------------- */
}
.footer__top {
  position: relative;
  text-align: center;
  max-width: 850px;
  margin: 0 auto 100px;
}
.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FEF800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 32px;
  animation: estrelaGuia 3s ease-in-out infinite;
}
.footer__title {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  line-height: 1.2;
  margin-bottom: 28px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  font-family: "Montserrat";
}
.footer__text {
  max-width: 700px;
  margin: 0 auto 45px;
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
}
.footer__top .btn {
  min-width: 240px;
  padding: 18px 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FEF800, #D6980B);
  color: #012C03;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 15px 35px rgba(214, 152, 11, 0.2);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.footer__top .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(214, 152, 11, 0.35);
}
.footer {
  /* --------------------------------------------------------------------------
     DIVISOR SACRADO
     -------------------------------------------------------------------------- */
}
.footer__divider {
  width: 100%;
  height: 1px;
  margin-bottom: 80px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}
.footer {
  /* --------------------------------------------------------------------------
     CONTEÚDO DO MENU E MARCA (Grid de Informações)
     -------------------------------------------------------------------------- */
}
.footer__content {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
  margin-bottom: 80px;
}
.footer__brand {
  max-width: 450px;
}
.footer__brand h3 {
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: #FEF800;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.footer__brand p {
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.98rem;
}
.footer__nav h4, .footer__contact h4 {
  color: #D6980B;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  font-weight: 600;
}
.footer__nav ul, .footer__contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__nav li, .footer__contact li {
  margin-bottom: 16px;
}
.footer__nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.footer__nav a:hover {
  color: #FEF800;
  transform: translateX(4px);
}
.footer__contact li {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__contact li .emoji {
  width: 18px;
  height: 18px;
  opacity: 0.85;
}
.footer {
  /* --------------------------------------------------------------------------
     RODAPÉ FINAL (Direitos Autorais)
     -------------------------------------------------------------------------- */
}
.footer__bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}
.footer__bottom .emoji {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
}

/* --------------------------------------------------------------------------
   RESPONSIVIDADE INTELIGENTE MANTIDA
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .footer {
    padding: 140px 0 40px;
  }
  .footer__content {
    grid-template-columns: 1fr;
    gap: 45px;
    text-align: center;
  }
  .footer__brand {
    margin: 0 auto;
  }
  .footer__nav li, .footer__contact li {
    justify-content: center;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer__waves {
    height: 122px;
  }
}
@media (max-width: 576px) {
  .footer__title {
    font-size: 2.1rem;
  }
  .footer__text {
    font-size: 1rem;
    line-height: 1.8;
  }
}
/* --------------------------------------------------------------------------
   KEYFRAMES DAS ANIMAÇÕES MÍSTICAS
   -------------------------------------------------------------------------- */
@keyframes auroraRespiro {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateX(-50%) scale(1.1);
    opacity: 1;
  }
}
@keyframes estrelaGuia {
  0%, 100% {
    opacity: 0.8;
    text-shadow: 0 0 2px rgba(254, 248, 0, 0.4);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 12px rgba(254, 248, 0, 0.9);
  }
}
@keyframes footerFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(30px) scale(1.05);
  }
}
@keyframes footerFloatReverse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-35px) scale(0.95);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body.menu-open {
  overflow: hidden;
}

/* ==========================================================================
   Seção Hero (Preservada Original)
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../images/BannerNancyRamos.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__container {
  position: relative;
  z-index: 3;
}
.hero__content--center {
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FEF800;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 30px;
}
.hero__title {
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1.05;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.hero__subtitle {
  margin-top: 30px;
  max-width: 720px;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
.hero__cta {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
  .hero__subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  .hero__cta {
    width: 100%;
    flex-direction: column;
  }
  .hero__cta .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ==========================================================================
   Efeitos do Título e Elementos (Animações Ativas)
   ========================================================================== */
.hero__title {
  font-family: "Lora";
  position: relative;
  display: inline-block;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1.05;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 20px rgba(254, 248, 0, 0.15), 0 0 40px rgba(254, 248, 0, 0.1);
  animation: heroFloat 7s ease-in-out infinite, heroGlow 5s ease-in-out infinite;
  overflow: visible;
}

/* Brilho passando */
.hero__title::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  animation: shine 8s infinite;
}

/* Luas */
.hero-moon {
  position: absolute;
  color: #FEF800;
  font-size: 38px;
  text-shadow: 0 0 15px rgba(254, 248, 0, 0.6), 0 0 30px rgba(254, 248, 0, 0.3);
}

.hero-moon-left {
  left: -70px;
  top: 15%;
  animation: moonLeftOrbit 8s ease-in-out infinite;
}

.hero-moon-right {
  right: -70px;
  top: 65%;
  animation: moonRightOrbit 10s ease-in-out infinite;
}

/* Entrada da página */
.hero-loaded .hero__title {
  animation: heroReveal 1.4s ease forwards, heroFloat 7s ease-in-out infinite 1.4s, heroGlow 5s ease-in-out infinite 1.4s;
}

/* ==========================================================================
   Animações (Keyframes)
   ========================================================================== */
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes heroGlow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(254, 248, 0, 0.15), 0 0 40px rgba(254, 248, 0, 0.1);
  }
  50% {
    text-shadow: 0 0 30px rgba(254, 248, 0, 0.35), 0 0 60px rgba(254, 248, 0, 0.2);
  }
}
@keyframes moonLeftOrbit {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(-12deg);
  }
}
@keyframes moonRightOrbit {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(12px) rotate(12deg);
  }
}
@keyframes shine {
  0% {
    left: -150%;
  }
  30% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
@media (max-width: 768px) {
  .hero-moon-left {
    left: -30px;
    font-size: 24px;
  }
  .hero-moon-right {
    right: -30px;
    font-size: 24px;
  }
}
/* ==========================================================================
   Borda Inferior Orgânica: Curva Zen e Suave (SVG Injetado)
   ========================================================================== */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 120px;
  z-index: 2;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,160L60,176C120,192,240,224,360,224C480,224,600,192,720,165.3C840,139,960,117,1080,122.7C1200,128,1320,160,1380,176L1440,192L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
}
@media (max-width: 768px) {
  .hero::after {
    height: 60px;
  }
}

/* ==========================================================================
   Efeito de Rolagem Suave Global (UX Ajustada)
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

#services {
  scroll-margin-top: 84px;
}

/* ==========================================================================
   HERO CTA - SISTEMA DE BOTÕES DUPLOS (Harmonia e Escolha)
   ========================================================================== */
.hero__cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.hero__cta .btn {
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px transparent;
}
.hero__cta .btn-primary {
  background: linear-gradient(135deg, #FEF800 0%, #D6980B 100%);
  color: #012C03;
  box-shadow: 0 10px 25px rgba(214, 152, 11, 0.2);
  animation: ctaRespiroEmanacao 4s ease-in-out infinite;
}
.hero__cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(214, 152, 11, 0.3);
}
.hero__cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  background: transparent;
}
.hero__cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

/* Ajuste específico para mobile garantir que os botões não se toquem */
@media (max-width: 576px) {
  .hero__cta {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero__cta .btn {
    width: 100%;
  }
}
/* ==========================================================================
   Seção de Serviços (Com Encaixe de Transição Zen)
   ========================================================================== */
.services {
  padding: 120px 0;
  position: relative;
  background: radial-gradient(circle at top, rgba(254, 248, 0, 0.12), transparent 45%), linear-gradient(180deg, #FDFBF7 0%, #FFFFFF 100%);
}
.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(253, 251, 247, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
.services .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.services .section-head {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.services .section-head__ornament {
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  font-size: 140px;
  color: rgba(214, 152, 11, 0.06);
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  animation: ornamentPulse 6s ease-in-out infinite;
}
.services .section-head__title {
  position: relative;
  z-index: 2;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #035806;
  line-height: 1.3;
  max-width: 800px;
  margin: 20px auto 0;
  font-family: "Lora";
}
.services .section-head__subtitle {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 20px auto 0;
  color: rgba(0, 0, 0, 0.6);
}
.services .section-head__badge {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: rgba(214, 152, 11, 0.08);
  border: 1px solid rgba(214, 152, 11, 0.15);
  color: #D6980B;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  position: relative;
  z-index: 3;
}
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .services {
    padding: 80px 0;
  }
  .services::before {
    height: 80px;
  }
  .services .section-head {
    margin-bottom: 40px;
  }
  .services .section-head__title {
    font-size: 28px;
  }
  .services .section-head__ornament {
    font-size: 90px;
    top: 50px;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* Mantive seus service-cards intactos e perfeitos, apenas limpei a identação */
.service-card {
  position: relative;
  padding: 40px 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(214, 152, 11, 0.15);
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.6s ease;
  overflow: hidden;
  opacity: 0;
  transform: translateY(25px);
}
.service-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card.is-visible:nth-child(1) {
  animation: folhaFlutuandoA 7s ease-in-out infinite;
}
.service-card.is-visible:nth-child(2) {
  animation: folhaFlutuandoB 8s ease-in-out infinite 1s;
}
.service-card.is-visible:nth-child(3) {
  animation: folhaFlutuandoA 9s ease-in-out infinite 0.5s;
}
.service-card.is-visible:nth-child(4) {
  animation: folhaFlutuandoB 7.5s ease-in-out infinite 1.5s;
}
.service-card:hover {
  animation-play-state: paused !important;
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 30px 60px rgba(166, 138, 100, 0.15);
  border-color: rgba(214, 152, 11, 0.35);
}
.service-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: -120px;
  right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 248, 0, 0.15), transparent);
}
.service-card__symbol {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #FEF800, #D6980B);
  font-size: 34px;
  box-shadow: 0 10px 30px rgba(214, 152, 11, 0.25);
}
.service-card__symbol .emoji {
  width: 38px;
  height: 38px;
}
.service-card__title {
  font-size: 22px;
  color: #035806;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: "Lora";
}
.service-card__text {
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.8;
  font-size: 15px;
}

/* ==========================================================================
   Keyframes Ritmo da Natureza (Performance Otimizada com Will-Change/Transform)
   ========================================================================== */
@keyframes folhaFlutuandoA {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    will-change: transform;
  }
  50% {
    transform: translateY(-6px) rotate(0.5deg);
  }
}
@keyframes folhaFlutuandoB {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    will-change: transform;
  }
  50% {
    transform: translateY(-5px) rotate(-0.5deg);
  }
}
/* ==========================================================================
   Seção de Depoimentos (Conexão Contínua e Fluida)
   ========================================================================== */
.testimonials {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.testimonials h2 {
  font-family: "Lora";
}
.testimonials {
  background: radial-gradient(circle at top center, rgba(254, 248, 0, 0.1), transparent 45%), linear-gradient(180deg, #FFFFFF 0%, #FDFBF7 100%);
}
.testimonials::before {
  content: "";
  position: absolute;
  top: -250px;
  left: -250px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 152, 11, 0.08), transparent 70%);
  pointer-events: none;
}
.testimonials::after {
  content: "";
  position: absolute;
  right: -300px;
  bottom: -300px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3, 88, 6, 0.05), transparent 70%);
  pointer-events: none;
}
.testimonials__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 70px;
}

/* --------------------------------------------------------------------------
   CARD DE DEPOIMENTO (Física de Flutuação Zen e Parábola)
   -------------------------------------------------------------------------- */
.testimonial-card {
  position: relative;
  padding: 40px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 32px;
  border: 1px solid rgba(214, 152, 11, 0.12);
  box-shadow: 0 25px 60px rgba(166, 138, 100, 0.05);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.5s ease, background-color 0.5s ease;
  overflow: hidden;
}
.testimonial-card::after {
  content: "❝";
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(214, 152, 11, 0.06);
  z-index: 1;
  transform-origin: center center;
  animation: aspasBalanço 6s ease-in-out infinite;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FEF800, #D6980B, #035806);
  opacity: 0.8;
  transition: opacity 0.5s ease;
}
.testimonial-card:nth-child(1) {
  animation: cardOndulação 8s ease-in-out infinite;
}
.testimonial-card:nth-child(2) {
  animation: cardOndulação 9s ease-in-out infinite 1s;
}
.testimonial-card:nth-child(3) {
  animation: cardOndulação 7.5s ease-in-out infinite 0.5s;
}
.testimonial-card:hover {
  animation-play-state: paused !important;
  transform: translateY(-12px) scale(1.01);
  border-color: rgba(214, 152, 11, 0.3);
  background: #ffffff;
  box-shadow: 0 35px 80px rgba(166, 138, 100, 0.12);
}
.testimonial-card:hover::before {
  opacity: 1;
}
.testimonial-card:hover .testimonial-card__avatar {
  transform: scale(1.05);
  border-color: rgba(214, 152, 11, 0.4);
  box-shadow: 0 12px 30px rgba(214, 152, 11, 0.25);
  animation-play-state: paused;
}

/* --------------------------------------------------------------------------
   ELEMENTOS INTERNOS DO CARD
   -------------------------------------------------------------------------- */
.testimonial-card__stars {
  font-size: 1.15rem;
  letter-spacing: 4px;
  color: #D6980B;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.testimonial-card__text {
  font-size: 1.05rem;
  line-height: 2;
  color: #475569;
  margin-bottom: 35px;
  font-style: italic;
  position: relative;
  z-index: 2;
  font-family: "Lora";
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
  font-family: "Montserrat";
}
.testimonial-card__author strong {
  display: block;
  color: #0f172a;
  font-size: 1rem;
  margin-bottom: 4px;
}
.testimonial-card__author span {
  color: #64748b;
  font-size: 0.92rem;
}

/* --------------------------------------------------------------------------
   AVATAR (Movimento de Resultados Consistentes / Emanação de Cura)
   -------------------------------------------------------------------------- */
.testimonial-card__avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(254, 248, 0, 0.18), rgba(214, 152, 11, 0.18));
  border: 1px solid rgba(214, 152, 11, 0.15);
  box-shadow: 0 10px 25px rgba(214, 152, 11, 0.12);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.5s ease, box-shadow 0.5s ease;
  will-change: transform, box-shadow;
  animation: pulsoAvatar 4s ease-in-out infinite;
}
.testimonial-card__avatar .emoji {
  width: 26px;
  height: 26px;
}

/* --------------------------------------------------------------------------
   SECTION HEAD & RESPONSIVO (Preservados e Alinhados)
   -------------------------------------------------------------------------- */
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-head__badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(214, 152, 11, 0.08);
  color: #D6980B;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-head__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 22px;
}

.section-head__subtitle {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #64748b;
}

@media (max-width: 992px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .testimonial-card {
    padding: 32px;
    animation: none !important;
  }
}
@media (max-width: 576px) {
  .testimonials {
    padding: 100px 0;
  }
  .testimonial-card {
    padding: 28px;
  }
  .testimonial-card__text {
    line-height: 1.9;
  }
}
/* ==========================================================================
   Keyframes Universais da Seção de Depoimentos
   ========================================================================== */
@keyframes pulsoAvatar {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(214, 152, 11, 0.12);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 14px 35px rgba(214, 152, 11, 0.22), 0 0 0 6px rgba(214, 152, 11, 0.04);
  }
}
@keyframes aspasBalanço {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-4px) rotate(3deg);
  }
}
@keyframes cardOndulação {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
}

.container-sm {
  max-width: 960px;
}

.container-lg {
  max-width: 1440px;
}

.section-head {
  text-align: center;
  margin-bottom: 72px;
}
.section-head__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.08);
  color: #7c5cff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}
.section-head__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #0f172a;
}
.section-head__subtitle {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(15, 23, 42, 0.7);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section {
  padding-block: 120px;
}

.section-sm {
  padding-block: 80px;
}

.section-lg {
  padding-block: 160px;
}

/* --------------------------------------------------------------------------
   BOTÕES CALMOS E CONSISTENTES (Hero & Header)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: "Lora";
}
.btn-primary {
  background: linear-gradient(135deg, #FEF800, #D6980B);
  color: #012C03;
  box-shadow: 0 10px 20px rgba(214, 152, 11, 0.15);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(214, 152, 11, 0.25);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

/* ==========================================================================
   Seção Sobre Mim (Jornada de Autoconhecimento)
   ========================================================================== */
.about {
  padding: 120px 0;
  background: #ffffff;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 992px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.about__media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.about__media.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.about__media.is-visible .about__image-wrapper {
  animation: imagemExpansao 9s ease-in-out infinite;
}
.about__media.is-visible .about__quote {
  animation: quoteFlutuante 7s ease-in-out infinite 0.5s;
}
.about__image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 40px 100px 40px 40px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(3, 88, 6, 0.06);
  will-change: transform;
}
.about__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about__image:hover {
  transform: scale(1.04);
}
.about__quote {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(214, 152, 11, 0.2);
  padding: 24px;
  border-radius: 24px;
  max-width: 280px;
  box-shadow: 0 15px 35px rgba(166, 138, 100, 0.12);
  z-index: 3;
  will-change: transform;
}
@media (max-width: 576px) {
  .about__quote {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 25px;
    max-width: 100%;
  }
}
.about__quote p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.75);
  font-style: italic;
  margin: 0;
}
.about__quote-icon {
  display: block;
  color: #D6980B;
  font-size: 20px;
  margin-bottom: 8px;
}
.about__title {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  color: #035806;
  line-height: 1.3;
  margin: 20px 0 25px;
  font-weight: 700;
  font-family: "Lora";
}
.about__text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
}
.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}

.about-pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #035806;
  font-weight: 500;
}
.about-pillar span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #D6980B;
}
.about-pillar span .emoji {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   Keyframes da Jornada Interior (Física de Micro-Paralaxe)
   ========================================================================== */
@keyframes imagemExpansao {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.01);
  }
}
@keyframes quoteFlutuante {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-14px) translateX(-4px);
  }
}
@font-face {
  font-family: "Alison";
  src: url("../../assets/fonts/UneChansonRomantique.woff2") format("woff2"), url("../../assets/fonts/UneChansonRomantique.woff2") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/*# sourceMappingURL=main.css.map */
