/* TAGFÁCIL – estilos alinhados ao layout de referência */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --pink: #d81b60;
  --pink-dark: #b71559;
  --ink: #1a1a1a;
  --text: #3d3d3d;
  --muted: #6b6b6b;
  --line: #e8e8e8;
  --bg-soft: #f5f5f5;
  --white: #ffffff;
  --footer: #2d0c14;
  --footer-burgundy: #4a0e1c;
  --wa: #25d366;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.06);
  --radius: 12px;
  --radius-lg: 20px;
  --max: 1120px;
  --font: "Poppins", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  background: var(--white);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Top bar */
.top-bar {
  background: var(--bg-soft);
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  padding: 0.4rem 1rem;
  border-bottom: 1px solid var(--line);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  flex-shrink: 0;
}

.brand__mark {
  width: 40px;
  height: 40px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.brand__mark svg {
  width: 20px;
  height: 20px;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin: -0.5rem;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
}

@media (min-width: 900px) {
  .nav__toggle {
    display: none;
  }
}

.nav {
  display: none;
  position: fixed;
  inset: 0 0 0 0;
  top: 0;
  background: var(--white);
  padding: 5rem 1.5rem 2rem;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.nav.is-open {
  display: flex;
}

.nav a {
  padding: 0.65rem 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--pink);
}

.header-cta {
  display: none;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    padding: 0;
    background: transparent;
    gap: 0.2rem 1.25rem;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
  }
  .nav a {
    width: auto;
    border: none;
    padding: 0.35rem 0;
  }
  .header-cta {
    display: block;
    flex-shrink: 0;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.btn--pink {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(216, 27, 96, 0.35);
}

.btn--pink:hover,
.btn--pink:focus-visible {
  background: var(--pink-dark);
}

.btn--outline {
  background: var(--white);
  color: var(--pink);
  border: 2px solid var(--pink);
  box-shadow: none;
}

.btn--outline:hover {
  background: rgba(216, 27, 96, 0.06);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 0.9rem 1.75rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.btn--pill-tag {
  background: linear-gradient(135deg, #fce4ec, #f8bbd9);
  color: var(--pink);
  font-size: 0.75rem;
  padding: 0.35rem 0.9rem;
}

.header-cta .btn {
  font-size: 0.8rem;
  padding: 0.55rem 1.1rem;
  white-space: nowrap;
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 3rem 1.25rem 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: #1a0a0f center/cover no-repeat;
  z-index: 0;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 10, 15, 0.55) 0%,
    rgba(20, 10, 15, 0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.45);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__title {
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero__title .accent {
  color: #ff4d8d;
  display: inline;
}

.hero__sub {
  font-size: 0.95rem;
  opacity: 0.95;
  max-width: 560px;
  margin: 0 auto 1.75rem;
  line-height: 1.65;
}

.hero__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero__stars .stars {
  color: #ff4d8d;
  letter-spacing: 0.1em;
}

.hero__foot {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.88;
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero__disclaimer {
  font-size: 0.7rem;
  margin-top: 0.5rem;
  opacity: 0.75;
}

/* Sections */
section {
  padding: 3.5rem 1.25rem;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.section--soft {
  background: var(--bg-soft);
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.section__title {
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5rem;
}

.section__title--pink {
  color: var(--pink);
}

.section__sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* Plan strip */
.plans-triple {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 700px) {
  .plans-triple {
    grid-template-columns: repeat(3, 1fr);
  }
}

.plan-mini {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  text-align: left;
}

.plan-mini--highlight {
  border: 2px solid var(--pink);
}

.plan-mini__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 0.35rem;
}

.plan-mini:not(.plan-mini--highlight) .plan-mini__price {
  color: var(--ink);
}

.plan-mini p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Benefit cards (Degustação etc.) */
.benefit-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .benefit-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.benefit-card--ribbon::before {
  content: "MELHOR CUSTO-BENEFÍCIO";
  display: block;
  background: var(--pink);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.4rem 0.5rem;
  margin: -1.5rem -1.25rem 1rem;
  letter-spacing: 0.04em;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  background: var(--pink);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.benefit-card h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 0 0.5rem;
}

.benefit-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Full-width image CTA */
.img-cta {
  text-align: center;
}

.img-cta__wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.img-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 600px) {
  .img-cta__actions {
    flex-direction: row;
    justify-content: center;
  }
}

.pill-cta {
  display: inline-block;
  background: #fce4ec;
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.muted-fine {
  font-size: 0.7rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0.75rem auto 0;
  line-height: 1.5;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
  }
}

.step {
  text-align: center;
  padding: 0.5rem;
}

.step__icon {
  width: 100%;
  max-width: 100px;
  height: 88px;
  margin: 0 auto 0.75rem;
  background: linear-gradient(180deg, #fce4ec 0%, #f8bbd9 100%);
  border-radius: 12px 12px 4px 4px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.5rem;
}

.step__icon svg {
  color: var(--pink);
  width: 36px;
  height: 36px;
  margin-bottom: 0.25rem;
}

.step__num {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-size: 0.85rem;
  color: var(--pink);
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.step p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1rem;
}

@media (min-width: 800px) {
  .why-grid {
    grid-template-columns: 1.1fr 1fr 1fr;
  }
}

.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.why-card--image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.why-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.why-icon {
  width: 40px;
  height: 40px;
  background: var(--pink);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.why-card h3 {
  font-size: 1rem;
  color: var(--ink);
  margin: 0 0 0.5rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  flex: 1;
}

/* Two column + cards */
.split-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1rem;
}

@media (min-width: 900px) {
  .split-block {
    grid-template-columns: 1.15fr 1fr;
  }
}

.split-block__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-block__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-card {
  display: flex;
  gap: 1rem;
  background: var(--white);
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.value-card__ic {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--pink);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.value-card h3 {
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0 0 0.25rem;
}

.value-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}

.split-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding: 0 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* Features 6 */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-row {
  display: flex;
  gap: 1rem;
  background: var(--white);
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: left;
  align-items: flex-start;
}

.feature-row__ic {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--pink);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.feature-row p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.5;
}

/* Accordion */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq h2.heading-legal {
  color: #5c1a2a;
  font-size: 1.75rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion__item > details {
  width: 100%;
}

.accordion__trigger {
  width: 100%;
  list-style: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.accordion__trigger:hover {
  color: var(--pink);
}

.accordion__item details[open] .accordion__trigger {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.85rem;
  margin-bottom: 0.75rem;
  background: #fefcfd;
}

.accordion__chev {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #aaa;
  transition: transform 0.2s;
}

.accordion__item details[open] .accordion__chev {
  transform: rotate(180deg);
}

.accordion__panel {
  padding: 0 1.15rem 1.1rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.accordion {
  list-style: none;
}

.accordion__item details summary::-webkit-details-marker {
  display: none;
}

/* Footer */
.site-footer {
  background: var(--footer-burgundy);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 1.25rem 0;
  font-size: 0.88rem;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-top {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .footer-top {
    grid-template-columns: 1.2fr 1.2fr 1fr;
  }
}

.site-footer h3 {
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
  font-weight: 700;
}

.site-footer p {
  margin: 0 0 0.5rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-columns ul li {
  margin-bottom: 0.5rem;
}

.footer-icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.footer-icon-list svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  opacity: 0.9;
}

.legal-box {
  max-width: 900px;
  margin: 0 auto 2rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  text-align: center;
}

.legal-box h4 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-text {
  max-width: var(--max);
  margin: 0 auto 2rem;
  padding: 0 0.5rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  text-align: justify;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Floating WA */
.fab-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 60px;
  height: 60px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border: 3px solid #1a1a1a;
  transition: transform 0.2s, box-shadow 0.2s;
  color: #fff;
}

.fab-wa:hover,
.fab-wa:focus-visible {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.3);
}

.fab-wa svg {
  width: 32px;
  height: 32px;
}

/* Mid hero button row */
.center-wa {
  text-align: center;
  margin: 2rem 0 3rem;
}

.center-wa .btn--lg {
  margin: 0 auto;
}

.muted-lead {
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* Section subheading duplicate for payment FAQ */
.subsection-title {
  text-align: center;
  color: var(--pink);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2.5rem 0 0.5rem;
}
