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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background: radial-gradient(circle at top left, #fef9c3 0, #fefce8 18%, #f9fafb 45%, #f9fafb 100%);
}

/* fundo com frutinhas */

.tema-banana-morango {
  position: relative;
  min-height: 100vh;
}

.bg-frutas {
  position: fixed;
  width: 220px;
  height: 220px;
  opacity: 0.18;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.bg-frutas-top-right {
  top: -20px;
  right: -10px;
  background-image: url("img/banana-fofa.svg");
}

.bg-frutas-bottom-left {
  bottom: -30px;
  left: -20px;
  background-image: url("img/morango-fofo.svg");
}

/* layout básico */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container.narrow {
  max-width: 720px;
}

.center {
  text-align: center;
}

/* header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(249,250,251,0.92), rgba(249,250,251,0.86), transparent);
  border-bottom: 1px solid rgba(15,23,42,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: #0f172a;
}

.brand-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-block;
}

.brand-icon-banana {
  background: radial-gradient(circle at 30% 20%, #fef9c3, #fde047 35%, #facc15 70%);
}

.brand-icon-morango {
  background: radial-gradient(circle at 30% 20%, #fecaca, #fb7185 40%, #e11d48 80%);
}

.brand-text {
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.92rem;
}

.nav a {
  text-decoration: none;
  color: #4b5563;
  font-weight: 500;
  position: relative;
}

.nav a:hover {
  color: #111827;
}

/* botões */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn.full {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(to right, #f97316, #ec4899);
  color: #f9fafb;
  box-shadow: 0 10px 25px rgba(248,113,113,0.35);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-outline {
  border-color: rgba(148,163,184,0.8);
  color: #111827;
  background: rgba(255,255,255,0.8);
}

.btn-outline:hover {
  background: #e5e7eb;
}

/* hero */

.hero {
  padding: 3rem 0 2.5rem;
}

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

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f97316;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.hero h1 {
  font-size: 2.3rem;
  line-height: 1.12;
  margin: 0 0 1rem;
}

.lead {
  font-size: 1rem;
  line-height: 1.55;
  color: #4b5563;
  max-width: 34rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.badges li {
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.04);
  color: #4b5563;
}

/* hero ilustração */

.hero-illustration {
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  background: radial-gradient(circle at top left, #fef9c3, #fee2e2, #e0f2fe);
  border-radius: 1.5rem;
  padding: 1.4rem;
  box-shadow: 0 22px 50px rgba(15,23,42,0.25);
  max-width: 320px;
  width: 100%;
}

.hero-fruta {
  width: 64px;
  height: 64px;
  position: absolute;
  top: -18px;
  border-radius: 999px;
  border: 3px solid #f9fafb;
}

.hero-banana {
  left: 18px;
}

.hero-morango {
  right: 18px;
}

.hero-screen {
  margin-top: 1.6rem;
  background: rgba(15,23,42,0.92);
  border-radius: 1.1rem;
  padding: 1rem 1.1rem;
  color: #e5e7eb;
}

.hero-screen .pill {
  display: inline-flex;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: rgba(148,163,184,0.2);
  margin-bottom: 0.6rem;
}

.hero-screen p {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
}

.hero-screen .duration {
  font-size: 0.78rem;
  color: #9ca3af;
}

/* seções genéricas */

.section {
  padding: 2.8rem 0;
}

.section-highlight {
  background: linear-gradient(135deg, #fef3c7, #ffe4e6);
}

.section h2 {
  font-size: 1.6rem;
  margin: 0 0 0.8rem;
}

.section p {
  margin: 0.2rem 0 0.7rem;
}

.section .small {
  font-size: 0.85rem;
}

/* page hero */

.page-hero {
  padding: 2.8rem 0 1.2rem;
}

.page-hero h1 {
  font-size: 2rem;
  margin: 0 0 0.8rem;
}

/* cards */

.cards-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.cards-grid-3 {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(148,163,184,0.35);
  backdrop-filter: blur(10px);
}

/* split grid */

.split-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  align-items: start;
}

.panel {
  background: #f9fafb;
  border-radius: 1.1rem;
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(148,163,184,0.4);
  box-shadow: 0 16px 40px rgba(15,23,42,0.10);
}

/* ticks */

.ticks {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.2rem;
}

.ticks.small {
  font-size: 0.88rem;
}

.ticks li {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  margin-bottom: 0.3rem;
  color: #4b5563;
}

.ticks li::before {
  content: "✓";
  font-size: 0.8rem;
  margin-top: 0.15rem;
  color: #16a34a;
}

/* platforms */

.platforms-grid {
  margin-top: 0.5rem;
}

.platform-card {
  text-align: left;
}

.platform-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}

.platform-icon.tiktok {
  background: radial-gradient(circle at 30% 20%, #f9a8d4, #0f172a);
}

.platform-icon.instagram {
  background: conic-gradient(from 200deg, #f97316, #ec4899, #6366f1, #f97316);
}

.platform-icon.youtube {
  background: radial-gradient(circle at 30% 20%, #fecaca, #ef4444);
}

.handle {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.7rem;
}

/* guides */

.guide-card h2 {
  margin-top: 0;
}

/* convidados */

.guests-grid {
  margin-top: 0.5rem;
}

.guest-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.guest-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #ec4899);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.guest-role {
  font-size: 0.86rem;
  color: #6b7280;
}

.guest-bio {
  font-size: 0.9rem;
}

.guest-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.guest-links a {
  font-size: 0.8rem;
  text-decoration: none;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  color: #374151;
}

.guest-links a:hover {
  background: #e5e7eb;
}

/* newsletter / forms */

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.newsletter-form input {
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.8);
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
}

/* footer */

.site-footer {
  border-top: 1px solid rgba(148,163,184,0.25);
  padding: 1.8rem 0 1.5rem;
  background: #0b1220;
  color: #e5e7eb;
  margin-top: 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.5fr) minmax(0, 1.5fr);
}

.site-footer .brand-text {
  color: #f9fafb;
}

.site-footer .muted {
  color: #9ca3af;
  font-size: 0.9rem;
}

.site-footer h4 {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
}

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

.list li {
  margin-bottom: 0.25rem;
}

.list a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.9rem;
}

.list a:hover {
  text-decoration: underline;
}

.footnote {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.78rem;
  color: #6b7280;
}

/* responsivo */

@media (max-width: 900px) {
  .hero-grid,
  .split-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.3rem;
  }

  .hero-grid {
    gap: 2rem;
  }

  .nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-card {
    max-width: 260px;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
}
