*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #FAF7F2; color: #1A1A1A; line-height: 1.6; }

/* NAV */
.nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 48px; border-bottom: 1px solid #E8DFD0; background: #FAF7F2; position: sticky; top: 0; z-index: 100; }
.nav-logo { display: inline-flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 600; color: #5A3015; letter-spacing: 0.06em; line-height: 1; }
.nav-logo span { display: inline-block; }
.nav-logo-icon { width: 30px; height: 30px; min-width: 30px; max-width: 30px; min-height: 30px; max-height: 30px; border-radius: 8px; object-fit: cover; display: block; flex-shrink: 0; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; color: #6B5744; text-decoration: none; }
.nav-links a:hover { color: #5A3015; }
.nav-cta { background: #5A3015; color: #F5EFE6; font-size: 13px; padding: 9px 20px; border-radius: 8px; border: none; cursor: pointer; font-weight: 500; }
.nav-cta:hover { background: #7A4520; }

/* HERO */
.hero { display: flex; align-items: center; gap: 48px; padding: 72px 48px 56px; max-width: 1000px; margin: 0 auto; }
.hero-text { flex: 1; }
.hero-badge { display: inline-block; background: #F5EFE6; color: #5A3015; font-size: 12px; font-weight: 500; padding: 5px 14px; border-radius: 99px; margin-bottom: 22px; border: 1px solid #C9A87A; }
.hero h1 { font-size: 40px; font-weight: 600; line-height: 1.15; color: #1A1A1A; margin-bottom: 18px; }
.hero h1 span { color: #5A3015; }
.hero p { font-size: 16px; color: #6B5744; line-height: 1.75; margin-bottom: 32px; max-width: 440px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary { background: #5A3015; color: #F5EFE6; font-size: 14px; padding: 12px 26px; border-radius: 8px; border: none; cursor: pointer; font-weight: 500; }
.btn-primary:hover { background: #7A4520; }
.btn-secondary { background: transparent; color: #1A1A1A; font-size: 14px; padding: 11px 26px; border-radius: 8px; border: 1px solid #C9A87A; cursor: pointer; }
.btn-secondary:hover { background: #F5EFE6; }
.hero-img { width: 240px; flex-shrink: 0; }
.hero-img img { width: 220px; height: 220px; object-fit: contain; }

/* SCREENSHOT */
.hero-screenshot { max-width: 1000px; margin: 0 auto; padding: 0 48px 56px; }
.hero-screenshot img { width: 100%; border-radius: 14px; border: 1px solid #E8DFD0; display: block; }

/* STATS */
.stats-wrap { max-width: 1000px; margin: 0 auto; padding: 0 48px 56px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat { background: #F0E8D8; border-radius: 10px; padding: 24px; text-align: center; }
.stat-num { font-size: 30px; font-weight: 600; color: #5A3015; }
.stat-label { font-size: 13px; color: #7A5A3A; margin-top: 4px; }

/* SEPARADOR */
.sep {
  display: block;
  width: 100%;
  height: 20px;
  overflow: hidden;
  line-height: 0;
  background-image: url("../../separador.png");
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 20px;
  margin-top: 4px;
}

/* BG WARM */
.bg-warm { background: #F0E8D8; }

/* SECTION HEADER */
.section-header { text-align: center; padding: 52px 48px 36px; }
.section-header h2 { font-size: 28px; font-weight: 600; color: #1A1A1A; margin-bottom: 12px; }
.section-header p { font-size: 15px; color: #6B5744; max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* FEATURES */
.features-wrap { max-width: 1000px; margin: 0 auto; padding: 0 48px 56px; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { background: #FFFFFF; border: 1px solid #E8DFD0; border-radius: 12px; padding: 22px; }
.feature-icon { width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 17px; }
.icon-amber  { background: #FAC775; }
.icon-teal   { background: #9FE1CB; }
.icon-green  { background: #C0DD97; }
.icon-purple { background: #CECBF6; }
.icon-coral  { background: #F5C4B3; }
.icon-blue   { background: #B5D4F4; }
.feature-card h3 { font-size: 14px; font-weight: 600; color: #1A1A1A; margin-bottom: 8px; }
.feature-card p  { font-size: 13px; color: #6B5744; line-height: 1.65; }

/* HIGHLIGHTS */
.highlight-section { max-width: 1000px; margin: 0 auto; padding: 56px 48px 64px; display: flex; flex-direction: column; gap: 64px; }
.highlight { display: flex; align-items: center; gap: 52px; }
.highlight.reverse { flex-direction: row-reverse; }
.highlight-img { flex: 1; }
.highlight-img img { width: 100%; border-radius: 12px; border: 1px solid #E8DFD0; display: block; }
.img-ph { background: #EDE4D4; border: 2px dashed #C9A87A; border-radius: 12px; height: 260px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #9A7A50; font-size: 13px; gap: 6px; }
.img-ph span:first-child { font-size: 26px; }
.img-ph .fname { font-weight: 600; color: #7A5A3A; }
.highlight-text { flex: 1; }
.hl-tag { display: inline-block; background: #F0E8D8; color: #5A3015; font-size: 12px; font-weight: 500; padding: 4px 12px; border-radius: 99px; margin-bottom: 14px; border: 1px solid #C9A87A; }
.highlight-text h3 { font-size: 22px; font-weight: 600; color: #1A1A1A; margin-bottom: 14px; line-height: 1.3; }
.highlight-text p { font-size: 15px; color: #6B5744; line-height: 1.75; }
.highlight-text .sub { font-size: 13px; color: #9A7A50; margin-top: 12px; }

/* CHANNELS */
.channels-wrap { max-width: 1000px; margin: 0 auto; padding: 0 48px 56px; }
.channels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.channel-pill { background: #FAF7F2; border: 1px solid #E8DFD0; border-radius: 99px; padding: 11px 18px; font-size: 13px; font-weight: 500; color: #5A3015; text-align: center; }

/* CTA */
.cta-section { background: #F5EFE6; border: 1px solid #C9A87A; border-radius: 14px; max-width: 904px; margin: 56px auto 56px; padding: 48px; text-align: center; }
.cta-eyebrow { display: inline-block; background: #5A3015; color: #F5EFE6; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 14px; border-radius: 99px; margin-bottom: 16px; }
.cta-section h2 { font-size: 24px; font-weight: 600; color: #3A200C; margin-bottom: 12px; line-height: 1.3; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-section > p  { font-size: 15px; color: #7A5030; line-height: 1.7; max-width: 460px; margin: 0 auto 24px; }
.cta-perks { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.perk { font-size: 13px; color: #5A3015; font-weight: 500; }
.cta-input-row  { display: flex; gap: 10px; max-width: 560px; margin: 0 auto; }
.cta-input { flex: 1; padding: 11px 16px; font-size: 14px; border-radius: 8px; border: 1px solid #C9A87A; background: #FFFFFF; color: #1A1A1A; }
.cta-input:focus { outline: none; border-color: #5A3015; }
.cta-input--business { flex: 1.2; }
.cta-input--email { flex: 1.4; }
.cta-submit { white-space: nowrap; }
.cta-captcha-wrap { margin: 14px auto 0; max-width: 560px; display: flex; justify-content: center; }
.cta-feedback { min-height: 20px; margin-top: 10px; font-size: 13px; color: #7A5030; }
.cta-feedback.is-error { color: #A33A22; }
.cta-disclaimer { font-size: 12px; color: #9A7A60; margin-top: 14px; }

/* FOOTER */
.footer { padding: 28px 48px; border-top: 1px solid #E8DFD0; display: flex; align-items: center; justify-content: space-between; }
.footer-logo  { font-size: 14px; font-weight: 600; color: #5A3015; letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: #6B5744; text-decoration: none; }
.footer-links a:hover { color: #5A3015; }
.footer-copy  { font-size: 12px; color: #9A8070; }

@media (max-width: 720px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero { flex-direction: column; padding: 36px 20px 32px; gap: 24px; }
  .hero-img { display: none; }
  .hero h1 { font-size: 30px; }
  .hero-screenshot { padding: 0 20px 36px; }
  .stats-wrap { padding: 0 20px 32px; }
  .stats { grid-template-columns: 1fr; }
  .section-header { padding: 36px 20px 24px; }
  .features-wrap { padding: 0 20px 32px; }
  .features { grid-template-columns: 1fr; }
  .highlight-section { padding: 32px 20px 40px; gap: 40px; }
  .highlight, .highlight.reverse { flex-direction: column; }
  .channels-wrap { padding: 0 20px 32px; }
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-section { margin: 32px 20px 40px; padding: 32px 20px; }
  .cta-input-row { flex-direction: column; }
  .cta-captcha-wrap { justify-content: flex-start; }
  .cta-perks { flex-direction: column; gap: 10px; align-items: center; }
  .footer { flex-direction: column; gap: 14px; text-align: center; padding: 24px 20px; }
}
