/* =========================================================
   SANTINA KUHN MOSCHEM — Design tokens
   ========================================================= */
:root {
  --teal-900: #12313a;
  --teal-800: #1a4149;
  --teal-700: #1e4e56;
  --teal-600: #2c636b;
  --teal-500: #497f87;
  --teal-300: #9dbdc1;
  --teal-100: #e0eaeb;

  --cream-50: #faf7f1;
  --sand-100: #f2ebdd;
  --sand-200: #e8dcc4;

  --gold-400: #b98d4b;
  --gold-300: #d1ab74;

  --ink-900: #2a251f;
  --ink-600: #5c5548;
  --ink-400: #8a8172;

  --white: #ffffff;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container-w: 1180px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --shadow-soft: 0 20px 45px -20px rgba(26, 65, 73, 0.25);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 28px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--teal-900);
  line-height: 1.15;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  color: var(--teal-800);
  margin-bottom: 8px;
}

p {
  color: var(--ink-600);
  max-width: 62ch;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 10px;
}

.section-intro {
  margin-bottom: 40px;
}

.section {
  padding: 96px 0;
}
.section.alt-bg {
  background: var(--sand-100);
}

/* Foco visível para acessibilidade */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--teal-700);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   BOTÕES
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
  border: 1.5px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--teal-700);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  background: var(--teal-800);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--teal-800);
  border-color: var(--teal-300);
}
.btn-ghost:hover {
  background: var(--teal-100);
}

.btn-lg {
  padding: 17px 34px;
  font-size: 1.05rem;
}

/* =========================================================
   SCROLL PROGRESS
   ========================================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal-700), var(--gold-400));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250, 247, 241, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 78, 86, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand-logo {
  height: 64px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 34px;
}
.main-nav a {
  font-size: 0.96rem;
  color: var(--ink-600);
  position: relative;
  padding-bottom: 4px;
}
.main-nav a:hover {
  color: var(--teal-700);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-400);
  transition: width 0.25s var(--ease);
}
.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--teal-800);
  transition:
    transform 0.25s var(--ease),
    opacity 0.25s var(--ease);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 88px 0 70px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.92rem;
  color: var(--teal-600);
  font-weight: 600;
  margin-bottom: 18px;
  opacity: 0;
  animation: rise 0.8s var(--ease) forwards;
}

.hero-title {
  font-size: clamp(2.5rem, 4.6vw, 3.6rem);
  margin-bottom: 22px;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.12s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--teal-700);
  font-weight: 500;
}

.hero-subtitle {
  font-size: 1.12rem;
  max-width: 46ch;
  margin-bottom: 32px;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.24s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.36s forwards;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink-600);
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.48s forwards;
}
.stars {
  color: var(--gold-400);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mark {
  position: absolute;
  width: 100%;
  max-width: 420px;
  z-index: 1;
}
.mark-ring {
  fill: none;
  stroke: var(--teal-300);
  stroke-width: 1;
  stroke-dasharray: 950;
  stroke-dashoffset: 950;
  animation: draw 2.2s var(--ease) 0.3s forwards;
}
.mark-leaf {
  fill: none;
  stroke: var(--teal-700);
  stroke-width: 2.5;
  stroke-linejoin: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: draw 1.8s var(--ease) 0.6s forwards;
}
.mark-leaf-vein {
  fill: none;
  stroke: var(--gold-400);
  stroke-width: 2;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: draw 1.4s var(--ease) 1.4s forwards;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.hero-photo-frame {
  position: relative;
  z-index: 2;
  width: 78%;
  aspect-ratio: 4/5;
  border-radius: 50% 50% 46% 54% / 55% 50% 50% 45%;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--white);
  opacity: 0;
  animation: rise 1s var(--ease) 0.5s forwards;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   FAIXA DE ACOLHIMENTO
   ========================================================= */
.welcome-strip {
  background: var(--teal-900);
  color: var(--teal-100);
  font-size: 0.9rem;
  padding: 13px 0;
}
.welcome-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}
.welcome-strip i {
  color: var(--gold-300);
  margin-right: 6px;
}
.welcome-strip .divider {
  color: var(--teal-500);
}

/* =========================================================
   SOBRE
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-soft);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy .crp-placeholder {
  color: var(--gold-400);
  font-style: italic;
}

.about-highlights {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-900);
  font-weight: 500;
}
.about-highlights i {
  color: var(--teal-700);
}

/* =========================================================
   SERVIÇOS
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--sand-200);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.service-icon {
  font-size: 1.6rem;
  color: var(--teal-700);
  margin-bottom: 16px;
  display: block;
}

/* =========================================================
   BENEFÍCIOS
   ========================================================= */
.benefits-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.benefits-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.benefits-list i {
  font-size: 1.3rem;
  color: var(--gold-400);
  margin-top: 4px;
}

/* =========================================================
   COMO FUNCIONA
   ========================================================= */
.steps-list {
  list-style: none;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.steps-list li {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--teal-300);
  font-weight: 600;
}

/* =========================================================
   PROVA / MARQUEE
   ========================================================= */
.proof-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.proof-rating .stars {
  font-size: 1.1rem;
}
.proof-rating p {
  color: var(--ink-900);
}

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll-left 38s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-md);
  padding: 28px;
  width: min(320px, 82vw);
  flex-shrink: 0;
}
.testimonial-stars {
  color: var(--gold-400);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-card p {
  font-style: italic;
  margin-bottom: 14px;
}
.testimonial-card cite {
  font-size: 0.88rem;
  color: var(--teal-700);
  font-style: normal;
  font-weight: 600;
}
.testimonial-card cite span {
  color: var(--ink-400);
  font-weight: 500;
}

/* =========================================================
   QUEBRA DE OBJEÇÕES
   ========================================================= */
.objections-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.objections-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.objections-list li {
  border-left: 2px solid var(--gold-400);
  padding-left: 20px;
}

/* =========================================================
   FAQ / ACCORDION
   ========================================================= */
.faq-container {
  max-width: 800px;
}

.accordion-item {
  border-bottom: 1px solid var(--sand-200);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--teal-900);
  cursor: pointer;
  text-align: left;
}
.accordion-trigger i {
  color: var(--gold-400);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}
.accordion-item.open .accordion-trigger i {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.accordion-panel p {
  padding-bottom: 22px;
}

/* =========================================================
   LOCALIZAÇÃO
   ========================================================= */
.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.location-info {
  list-style: none;
  margin: 22px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.location-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-900);
}
.location-info i {
  color: var(--teal-700);
  width: 18px;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3.2;
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.section-final-cta {
  background: var(--teal-900);
  text-align: center;
}
.final-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}
.section-final-cta h2 {
  color: var(--cream-50);
}
.section-final-cta p {
  color: var(--teal-100);
  margin: 0 auto 34px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--sand-100);
  padding-top: 70px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--sand-200);
}
.footer-logo {
  height: 40px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a:hover {
  color: var(--teal-700);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}
.footer-contact a:hover {
  color: var(--teal-700);
}

.footer-bottom {
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-400);
}
.footer-bottom-inner a {
  color: var(--teal-700);
  font-weight: 600;
}

/* =========================================================
   WHATSAPP FLUTUANTE
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.6);
  z-index: 800;
  animation: pulse-wa 2.4s infinite;
}
@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 980px) {
  .hero-inner,
  .about-grid,
  .benefits-grid,
  .objections-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    text-align: left;
  }
  .about-photo {
    max-width: 340px;
  }
  .hero-visual {
    order: -1;
    max-width: 380px;
    margin: 0 auto;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--cream-50);
    flex-direction: column;
    padding: 24px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--sand-200);
    transform: translateY(-130%);
    opacity: 0;
    transition:
      transform 0.3s var(--ease),
      opacity 0.3s var(--ease);
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
  }
  .menu-toggle {
    display: flex;
  }
  .header-cta {
    display: none;
  }
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 70px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
    text-align: center;
  }

  .marquee-track {
    gap: 16px;
  }
  .testimonial-card {
    padding: 22px;
  }

  .final-cta-inner .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    text-align: center;
  }
  .footer-brand,
  .footer-nav,
  .footer-contact {
    align-items: center;
  }
  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

/* Telas bem pequenas (celulares compactos) */
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 56px 0;
  }

  .header-inner {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .brand-logo {
    height: 56px;
  }

  .hero {
    padding: 56px 0 40px;
  }
  .hero-title {
    font-size: clamp(1.9rem, 8vw, 2.3rem);
  }
  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }
  .hero-photo-frame {
    width: 90%;
  }

  .welcome-strip-inner {
    flex-direction: column;
    gap: 6px;
  }
  .welcome-strip .divider {
    display: none;
  }

  .about-photo {
    max-width: 260px;
    margin: 0 auto;
  }

  h2 {
    margin-bottom: 14px;
  }

  .testimonial-card {
    width: 84vw;
    padding: 20px;
  }

  .location-map {
    aspect-ratio: 4/3.6;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    bottom: 18px;
    right: 18px;
  }

  .btn-lg {
    width: 100%;
  }
}
