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

:root {
  --pink: #e6007e;
  --pink-soft: #ff7fbc;
  --pink-light: #ffe5f3;
  --gold: #f2c46a;
  --text-dark: #3a0220;
  --card: #ffffff;
  --border-soft: rgba(230, 0, 126, 0.25);
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #ffe5f3 0%, #ffd1ec 30%, #ffeef7 70%, #ffffff 100%);
  color: var(--text-dark);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

/* Top bar */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to right, #ffb4df, #ffe5f3);
  border-bottom: 1px solid rgba(230, 0, 126, 0.25);
  backdrop-filter: blur(10px);
}

.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.brand-symbol {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #ffffff, #ffd6f3 40%, var(--pink) 70%, #b00058 100%);
  color: #ffffff;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
}

.nav a {
  opacity: 0.85;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid transparent;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
}

.nav a:hover {
  opacity: 1;
  border-color: var(--pink);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--pink), var(--gold));
  color: #fff;
  border: none !important;
}

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(circle at top left, rgba(243, 196, 248, 0.9), transparent 60%),
    radial-gradient(circle at bottom right, rgba(255, 181, 220, 0.9), transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(242, 196, 106, 0.6);
  box-shadow: 0 0 18px rgba(230, 0, 126, 0.3);
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.highlight-badge::before {
  content: "★";
  font-size: 0.9rem;
  color: var(--gold);
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 3vw, 3.1rem);
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hero h1 span {
  background-image: linear-gradient(120deg, var(--pink), var(--gold));
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  color: #5b0931;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 1.1rem;
}

.hero-note {
  font-size: 0.78rem;
  color: #7a1244;
  max-width: 30rem;
  opacity: 0.95;
}

.hero-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.hero-image-card {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(230, 0, 126, 0.25);
  box-shadow:
    0 12px 30px rgba(194, 21, 121, 0.25),
    0 0 40px rgba(242, 196, 106, 0.25);
  background: #ffffff;
}

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

.hero-image-card.secondary {
  max-width: 82%;
  margin-left: auto;
  transform: translateY(-8%);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(120deg, var(--pink), var(--gold));
  color: #ffffff;
  box-shadow:
    0 10px 22px rgba(194, 21, 121, 0.4),
    0 0 24px rgba(230, 0, 126, 0.5);
}

.btn.primary.large {
  padding-inline: 1.8rem;
}

.btn.ghost {
  background: #ffffff;
  border-color: rgba(230, 0, 126, 0.4);
  color: var(--text-dark);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 26px rgba(194, 21, 121, 0.45),
    0 0 26px rgba(230, 0, 126, 0.6);
}

/* Sections */
.section {
  padding: 3.2rem 0;
  background: #ffeef7;
}

.section-light {
  background: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.4rem;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.section-header h2 span {
  background-image: linear-gradient(120deg, var(--pink), var(--gold));
  -webkit-background-clip: text;
  color: transparent;
}

.section-header p {
  color: #6d123c;
}

/* Layouts */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2.8rem;
  align-items: center;
}

.text-block h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.text-block h2 span {
  background-image: linear-gradient(120deg, var(--pink), var(--gold));
  -webkit-background-clip: text;
  color: transparent;
}

.text-block p {
  color: #6b0f39;
  margin-bottom: 0.7rem;
}

.icons-list {
  list-style: none;
  margin-top: 0.8rem;
}

.icons-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  color: #5b0931;
}

.icons-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.7rem;
  color: var(--gold);
}

/* Video */
.video-block {
  align-self: stretch;
}

.video-wrapper {
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(242, 196, 106, 0.7);
  box-shadow:
    0 16px 32px rgba(194, 21, 121, 0.3),
    0 0 40px rgba(242, 196, 106, 0.4);
  background: #ffffff;
}

.video-wrapper video {
  width: 100%;
  display: block;
}

.video-caption {
  margin-top: 0.7rem;
  font-size: 0.84rem;
  color: #7a1244;
}

/* Cards & grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 26px rgba(194, 21, 121, 0.15);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.card p {
  font-size: 0.94rem;
  color: #6b0f39;
}

.card.flat {
  background: #ffeef7;
}

.bullet-list {
  list-style: none;
  margin-top: 0.4rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: #5b0931;
}

.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink);
}

/* CTA centered */
.cta-centered {
  margin-top: 2.4rem;
  text-align: center;
}

.cta-centered p {
  margin-bottom: 0.8rem;
  color: #6b0f39;
}

/* Depoimentos */
.testimonial {
  background: #ffffff;
  border-radius: 1.3rem;
  padding: 1.4rem 1.5rem 1.3rem;
  border: 1px solid rgba(242, 196, 106, 0.8);
  box-shadow:
    0 16px 32px rgba(194, 21, 121, 0.25),
    0 0 36px rgba(242, 196, 106, 0.4);
}

.testimonial p {
  font-size: 0.96rem;
  color: #5b0931;
  margin-bottom: 0.75rem;
}

.author {
  font-size: 0.85rem;
  color: var(--gold);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.faq-item {
  background: #ffeef7;
  border-radius: 1.1rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--border-soft);
}

.faq-item h3 {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.faq-item p {
  font-size: 0.9rem;
  color: #6b0f39;
}

/* Contato */
.section-contact {
  background:
    radial-gradient(circle at top left, #ffe5f3, transparent 65%),
    radial-gradient(circle at bottom right, #ffd1ec, transparent 65%),
    #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  margin-bottom: 0.7rem;
  color: var(--text-dark);
}

.contact-text h2 span {
  background-image: linear-gradient(120deg, var(--pink), var(--gold));
  -webkit-background-clip: text;
  color: transparent;
}

.contact-text p {
  color: #6b0f39;
  margin-bottom: 0.7rem;
}

.contact-info p {
  font-size: 0.95rem;
  color: #5b0931;
}

.contact-info {
  margin: 0.5rem 0 1.1rem;
}

.contact-card {
  background: #ffffff;
  border-radius: 1.3rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(242, 196, 106, 0.8);
  box-shadow:
    0 18px 32px rgba(194, 21, 121, 0.25),
    0 0 36px rgba(242, 196, 106, 0.45);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(230, 0, 126, 0.25);
  padding: 1.4rem 0 1.8rem;
  background: #ffe5f3;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #6b0f39;
}

.dev-credit a {
  color: var(--pink);
  font-weight: 600;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 1.3rem;
  right: 1.1rem;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(140deg, var(--pink), var(--gold));
  color: #ffffff;
  box-shadow:
    0 12px 26px rgba(194, 21, 121, 0.45),
    0 0 26px rgba(230, 0, 126, 0.7);
  z-index: 60;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .two-column,
  .grid-3,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.4rem;
  }

  .hero-media {
    order: -1;
  }

  .hero-image-card.secondary {
    max-width: 100%;
    margin-left: 0;
    transform: translateY(0);
  }

  .nav {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-bottom: 2.4rem;
  }

  .section {
    padding: 2.4rem 0;
  }

  .top-inner {
    padding-block: 0.55rem;
  }

  .floating-whatsapp {
    width: 2.9rem;
    height: 2.9rem;
    bottom: 1rem;
    right: 0.9rem;
  }
}
