:root {
  --orange-100: #FFF1EF;
  --orange-200: #FFE3DF;
  --orange-300: #FFC9C2;
  --orange-400: #FF8B7B;
  --orange-500: #FF482F;
  --orange-600: #FF1F00;
  --orange-700: #BD1700;

  --gray-100: #EFF4FF;
  --gray-200: #DEE8FF;
  --gray-300: #C6D0E8;
  --gray-500: #8990A3;
  --gray-600: #585C68;
  --gray-700: #484C56;
  --gray-800: #32353C;
  --gray-900: #212226;

  --bg-beige: #F3EFE3;
  --white: #FFFFFF;
  --green: #3EB742;

  --font-display: "Poppins", "Segoe UI", sans-serif;
  --shadow-soft: 0 20px 45px -25px rgba(33, 34, 38, 0.35);
  --shadow-card: 0 10px 30px -18px rgba(33, 34, 38, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-display);
  background: var(--bg-beige);
  color: var(--gray-900);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button {
  font-family: inherit;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243, 239, 227, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(33, 34, 38, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

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

.brand-word {
  height: 22px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--orange-600);
}

.nav-cta {
  background: var(--gray-900);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--orange-600);
}

/* Hero */
.hero {
  padding: 72px 0 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange-600);
  margin: 0 0 14px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--gray-900);
}

.text-orange {
  color: var(--orange-500);
}

.tagline {
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gray-700);
  margin: 0 0 18px;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--gray-700);
  max-width: 46ch;
  margin: 0 0 30px;
}

.hero-footnote {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--gray-500);
}

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

.hero-blob {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--orange-300), var(--orange-500));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.hero-icon {
  width: 110px;
  height: 110px;
  filter: brightness(0) invert(1);
}

.hero-mascot {
  position: absolute;
  width: 130px;
  right: 6%;
  bottom: -6%;
  filter: drop-shadow(0 18px 30px rgba(33, 34, 38, 0.22));
}

/* Store buttons */
.store-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-900);
  color: var(--white);
  padding: 11px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.15;
  transition: transform 0.15s ease, background 0.15s ease;
}

.store-button:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
}

.store-button small {
  display: block;
  font-weight: 400;
  font-size: 0.68rem;
  opacity: 0.8;
}

.store-buttons.on-dark .store-button {
  background: var(--white);
  color: var(--gray-900);
}

.store-buttons.on-dark .store-button:hover {
  background: var(--orange-500);
  color: var(--white);
}

/* Trust strip */
.trust-strip {
  background: var(--white);
  border-top: 1px solid rgba(33, 34, 38, 0.06);
  border-bottom: 1px solid rgba(33, 34, 38, 0.06);
  padding: 16px 0;
}

.trust-inner p {
  margin: 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--gray-600);
}

.trust-inner strong {
  color: var(--orange-600);
}

/* Features */
.features {
  padding: 88px 0;
  text-align: center;
}

.features h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.section-sub {
  color: var(--gray-600);
  max-width: 56ch;
  margin: 0 auto 48px;
  font-size: 1.02rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}

.feature-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--orange-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon img {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Spotlight */
.spotlight {
  background: var(--gray-900);
  color: var(--white);
  padding: 88px 0;
}

.spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 48px;
  align-items: center;
}

.spotlight .eyebrow {
  color: var(--orange-400);
}

.spotlight h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.spotlight p:not(.eyebrow) {
  color: var(--gray-300);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 48ch;
}

.spotlight-visual {
  width: 140px;
  height: 140px;
  border-radius: 32px;
  justify-self: center;
  background: linear-gradient(155deg, var(--orange-300), var(--orange-500));
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.35));
}

.spotlight-icon {
  width: 64px;
  height: 64px;
  color: var(--white);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}

.cta-inner h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
}

.cta-inner p {
  margin: 0 0 28px;
  font-size: 1.05rem;
  opacity: 0.95;
}

.cta-inner .store-buttons {
  justify-content: center;
}

/* Footer */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-500);
  padding: 32px 0;
}

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

.footer-logo {
  height: 18px;
  width: auto;
}

.footer-inner p {
  margin: 0;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 260px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spotlight-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .spotlight p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .nav {
    gap: 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 560px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .store-buttons {
    justify-content: center;
  }
}

/* ---------------------------------------------------------------- */
/* Landing pages de SEO                                              */
/* ---------------------------------------------------------------- */

.lp-hero .hero-visual {
  min-height: 260px;
}

.lp-body {
  padding: 8px 0 72px;
}

.lp-body-inner {
  max-width: 760px;
}

.lp-body-inner h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.lp-body-inner p {
  color: var(--gray-700);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0 0 18px;
}

/* Comparison table (competitor pages) */
.compare-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  margin-bottom: 18px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.compare-table th {
  text-align: left;
  padding: 16px 20px;
  background: var(--gray-900);
  color: var(--white);
  font-weight: 600;
}

.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(33, 34, 38, 0.08);
  color: var(--gray-800);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-yes {
  color: var(--orange-600);
  font-weight: 700;
  text-align: right;
}

.compare-note {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-style: italic;
}

/* Step list (how-to pages) */
.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.steps-list li {
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
}

.steps-list h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  color: var(--orange-600);
}

.steps-list p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* FAQ */
.faq {
  padding: 0 0 88px;
}

.faq .container {
  max-width: 760px;
}

.faq h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--gray-900);
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--orange-500);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Related links */
.related {
  padding: 0 0 72px;
}

.related h2 {
  font-size: 1.3rem;
  margin: 0 0 16px;
}

.related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.related-list a {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  border-bottom: 1px solid rgba(33, 34, 38, 0.1);
  display: inline-block;
  padding-bottom: 2px;
}

.related-list a:hover {
  color: var(--orange-600);
  border-color: var(--orange-500);
}

@media (max-width: 860px) {
  .lp-hero .hero-visual {
    min-height: 200px;
  }
}

/* Home: bloco de links internos (guias e comparações) */
.site-links {
  padding: 64px 0 72px;
  border-top: 1px solid rgba(33, 34, 38, 0.08);
}

.site-links h2 {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
  margin: 0 0 28px;
  text-align: center;
}

.site-links-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.site-links-grid h3 {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0 0 10px;
  font-weight: 600;
}

.site-links-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-links-grid a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 0.88rem;
}

.site-links-grid a:hover {
  color: var(--orange-600);
}

@media (max-width: 860px) {
  .site-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .site-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
