/* ===== Tokens de marca (mesma identidade do app: Playfair Display + Inter, verde/creme/vermelho) ===== */
:root {
  --brand-dark: #2c4a3d;
  --brand-dark-text: #eaf2ee;
  --cream: #f5f1e6;
  --primary: #c41e3a;
  --primary-dark: #9e1830;
  --bg: #f5f5f7;
  --surface: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #6b6b6b;
  --text-muted: #9a9a9a;
  --border: #e8e8ec;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1160px;
  --header-container: 1360px;
  --whatsapp: #25d366;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Fade-up ao entrar na viewport (ver script.js). Fica no topo do arquivo de
   propósito: precisa perder, em especificidade de ordem, para qualquer
   transform de :hover definido depois (ex.: .feature-card:hover). */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.section {
  padding: 88px 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head p {
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(196, 30, 58, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 10px 26px rgba(196, 30, 58, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--brand-dark-text);
  border: 1.5px solid rgba(234, 242, 238, 0.4);
}

.btn-outline:hover {
  background: rgba(234, 242, 238, 0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}

.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 16px;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--header-container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.brand-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-secondary);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  position: relative;
  transition: all 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

/* ===== Hero ===== */
.hero {
  background: var(--brand-dark);
  color: var(--brand-dark-text);
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 400px at 85% 10%, rgba(196, 30, 58, 0.22), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(234, 242, 238, 0.1);
  border: 1px solid rgba(234, 242, 238, 0.18);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  color: #fff;
  max-width: 620px;
}

.hero h1 em {
  font-style: italic;
  color: #f0a5b0;
}

.hero-sub {
  margin-top: 22px;
  font-size: 18px;
  color: rgba(234, 242, 238, 0.85);
  max-width: 520px;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-trust div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(234, 242, 238, 0.75);
}

.hero-trust svg {
  flex-shrink: 0;
  color: #6fbf8b;
}

/* ---- Mock do app no hero (CSS puro, sem imagem) ---- */
.phone-mock {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 34px;
  padding: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  border: 6px solid #1e332b;
}

.phone-screen {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  min-height: 480px;
}

.phone-header {
  background: var(--surface);
  padding: 14px 16px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.phone-header .brand-mark {
  width: 28px;
  height: 28px;
}

.phone-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg);
}

.phone-search {
  margin: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 11px;
  color: var(--text-muted);
}

.phone-banner {
  margin: 0 14px 12px;
  height: 78px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-dark), #1e332b);
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.phone-row-label {
  margin: 0 14px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

.phone-cards {
  display: flex;
  gap: 8px;
  padding: 0 14px 14px;
}

.phone-card {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
}

.phone-card .ph-img {
  height: 40px;
  border-radius: 6px;
  background: var(--border);
  margin-bottom: 6px;
}

.phone-card .ph-line {
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  margin-bottom: 4px;
}

.phone-card .ph-line.short {
  width: 60%;
}

.phone-card .ph-price {
  height: 8px;
  width: 40%;
  border-radius: 3px;
  background: var(--primary);
  margin-top: 6px;
  opacity: 0.55;
}

.phone-tabbar {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.phone-tabbar span {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--border);
}

.phone-tabbar span.on {
  background: var(--primary);
}

.float-chip {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
}

.float-chip.chip-1 {
  top: 14%;
  left: -8%;
}

.float-chip.chip-2 {
  bottom: 10%;
  right: -10%;
}

.float-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #21c15a;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}

.feature-icon.c1 {
  background: var(--primary);
}
.feature-icon.c2 {
  background: var(--brand-dark);
}
.feature-icon.c3 {
  background: var(--primary-dark);
}
.feature-icon.c4 {
  background: var(--whatsapp);
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 16px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-primary);
}

.feature-list svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== Produtos (hero + tags) ===== */
.products-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}

.products-hero-media {
  position: relative;
}

.products-hero-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.products-hero-copy .eyebrow {
  margin-bottom: 14px;
}

.products-hero-copy h2 {
  margin-bottom: 16px;
}

.products-hero-copy > p {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 480px;
}

.products-hero-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 32px;
}

.products-hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.products-hero-points svg {
  flex-shrink: 0;
  color: var(--primary);
}

/* ===== Produtos (tags) ===== */
.product-tags {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-tag-group h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 14px;
}

.tag-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tag-list li {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-primary);
}

/* ===== Pacotes (pricing) ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.pricing-card .feature-list {
  margin-bottom: 28px;
}

.pricing-btn {
  margin-top: auto;
  width: 100%;
}

.pricing-card.pricing-featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow);
}

.pricing-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.pricing-count {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.pricing-value span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ===== Depoimentos ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
}

.testimonial-card blockquote {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.4;
  color: var(--text-primary);
}

.testimonial-card figcaption {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-card figcaption span {
  display: block;
  font-weight: 500;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ===== Como funciona ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 8px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--primary);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* ===== Benefícios ===== */
.benefits-section {
  background: var(--surface);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-item {
  text-align: center;
  padding: 28px 16px;
}

.benefit-item .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--brand-dark);
}

.benefit-item h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ===== Galeria ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--border);
}

.gallery-item.span-2 {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* ===== CTA final ===== */
.cta-final {
  background: linear-gradient(135deg, var(--brand-dark), #1e332b);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 300px at 15% 90%, rgba(196, 30, 58, 0.25), transparent 60%);
}

.cta-final h2 {
  color: #fff;
  position: relative;
}

.cta-final p {
  position: relative;
  margin-top: 14px;
  color: rgba(234, 242, 238, 0.85);
  font-size: 17px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final .hero-actions {
  justify-content: center;
  position: relative;
  margin-top: 32px;
}

/* ===== Footer ===== */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-contact a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ===== WhatsApp float button ===== */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  color: #fff;
  transition: transform 0.15s ease;
}

.wa-float:hover {
  transform: scale(1.06);
}

/* ===== Responsivo ===== */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .phone-mock {
    max-width: 240px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .products-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  .products-hero-copy > p {
    max-width: none;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-tags {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .cta-final {
    padding: 44px 24px;
  }
}

/* Nav completa (7 links + 2 botões) só cabe em telas bem largas — colapsa
   pro menu hambúrguer bem antes do breakpoint "mobile" de layout. */
@media (max-width: 1280px) {
  .nav-links,
  .nav-cta .btn-outline-dark {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }
  .hero {
    padding: 64px 0 72px;
  }
  .product-tags {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  /* No celular, o botão de WhatsApp do header estourava a tela — a mesma
     ação já existe no menu hambúrguer e no botão flutuante. */
  .nav-cta .btn-primary {
    display: none;
  }
}

/* ===== Menu mobile ===== */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 12px 0;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
}

.mobile-menu .btn {
  margin-top: 12px;
}

/* ===== Utilidades ===== */
.text-center {
  text-align: center;
}

