:root {
  --bg: #f3f7fb;
  --surface: #ffffff;
  --surface-soft: #edf3ff;
  --text: #131926;
  --text-muted: #5b6375;
  --line: #dae3f3;
  --primary: #ff5b2e;
  --primary-strong: #ec4314;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 15px 35px rgba(19, 25, 38, 0.08);
  --shadow-hover: 0 18px 36px rgba(13, 21, 43, 0.15);
}

* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

/* Evita imagens estourando em qualquer resolução */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.bg-glow {
  position: fixed;
  z-index: -1;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
}

.bg-glow-1 {
  width: 360px;
  height: 360px;
  background: #ffd89f;
  top: -90px;
  left: -80px;
}

.bg-glow-2 {
  width: 420px;
  height: 420px;
  background: #b8f3ec;
  bottom: -120px;
  right: -120px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(243, 247, 251, 0.88);
  border-bottom: 1px solid rgba(218, 227, 243, 0.7);
}

.topbar-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}

.brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

/* Menu mobile */
.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: #243350;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: grid;
  gap: 6px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

body.nav-open .nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  background: #f3f7ff;
  outline: none;
}

main {
  overflow-x: clip;
}

.hero {
  display: grid;
  gap: 24px;
  align-items: center;
  min-height: auto;
  padding: 34px 0 28px;
}

.kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff3e3, #e0fff9);
  color: #5f4a1c;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 9vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.93rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #ff7f2e);
  box-shadow: 0 10px 20px rgba(255, 91, 46, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 14px 24px rgba(255, 91, 46, 0.32);
}

.btn-secondary {
  color: var(--text);
  background: #fff;
  border-color: var(--line);
}

.hero-proof {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-proof span {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: #3a465b;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.panel-card {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(165deg, #ffffff 0%, #f5faff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.panel-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  top: -50px;
  right: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 182, 168, 0.25) 0%, rgba(21, 182, 168, 0) 70%);
}

.panel-card h2 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
}

.panel-card p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

.panel-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.panel-stats div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px;
}

.panel-stats strong {
  display: block;
  font-size: 1.2rem;
  font-family: "Space Grotesk", sans-serif;
}

.panel-stats small {
  color: var(--text-muted);
  font-weight: 600;
}

.section {
  padding: 30px 0 20px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 6vw, 2.2rem);
  font-family: "Space Grotesk", sans-serif;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Seção dedicada para a imagem principal */
.panda-section {
  padding-top: 10px;
}

.panda-head {
  text-align: center;
  max-width: 68ch;
  margin: 0 auto;
}

.panda-media-wrap {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.panda-media {
  width: 100%;
  max-width: 980px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.products-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #c8d5f0;
}

.product-image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.03);
}

.product-content {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.product-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.price {
  font-weight: 800;
  color: var(--primary-strong);
  font-size: 1.05rem;
}

.rating {
  color: #f5a623;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.product-link {
  display: block;
  text-align: center;
  text-decoration: none;
  background: #0f1b33;
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  transition: background 0.2s ease;
}

.product-link:hover {
  background: #1c2f53;
}

.benefits-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.benefit-card {
  margin: 0;
  background: linear-gradient(170deg, #fff 0%, var(--surface-soft) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
}

.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.benefit-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.featured-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.featured-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 20px;
  color: #fff;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-soft);
}

.featured-card:nth-child(1) {
  background: linear-gradient(135deg, #ff6a3d, #ff8743);
}

.featured-card:nth-child(2) {
  background: linear-gradient(135deg, #167ad8, #31a1f4);
}

.featured-card:nth-child(3) {
  background: linear-gradient(135deg, #0f827d, #18b5a7);
}

.featured-card h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  overflow-wrap: anywhere;
}

.featured-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.featured-price {
  margin-top: 14px;
  font-weight: 800;
  font-size: 1.1rem;
}

.featured-card a {
  margin-top: 16px;
  display: inline-block;
  align-self: flex-start;
  text-decoration: none;
  color: #0f1b33;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  font-size: 0.88rem;
}

.social-proof {
  background: linear-gradient(180deg, #fff, #f7fbff);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  text-align: center;
}

.social-proof h2 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.3rem, 5.4vw, 1.95rem);
}

.social-proof p {
  margin: 0;
  color: var(--text-muted);
}

.footer {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-content {
  padding: 24px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-content h3 {
  margin: 0 0 6px;
  font-family: "Space Grotesk", sans-serif;
}

.footer-content p {
  margin: 0;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #243350;
  font-weight: 700;
}

.footer-bottom {
  padding: 0 0 18px;
}

.footer-bottom small {
  color: var(--text-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .btn {
    width: auto;
  }
}

@media (min-width: 640px) {
  .products-grid,
  .benefits-grid,
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 34px 0 22px;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

@media (min-width: 860px) {
  body.nav-open {
    overflow: auto;
  }

  .topbar-content {
    padding: 14px 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }

  .nav a {
    padding: 8px 10px;
    font-weight: 600;
  }

  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
    min-height: calc(100vh - 80px);
    padding: 52px 0 38px;
  }

  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .products-grid,
  .benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .panda-section {
    padding-top: 6px;
  }

  .panda-media-wrap {
    padding-inline: 8px;
  }
}

@media (max-width: 768px) {
  .panda-section {
    padding-top: 4px;
  }

  .panda-head {
    text-align: left;
  }

  .panda-media-wrap {
    margin-top: 14px;
    padding-inline: 4px;
  }

  .panda-media {
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.whatsapp-float {
  position: fixed !important;
  bottom: 40px !important;
  right: 20px !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: #25d366 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 2147483647 !important; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
  transition: transform 0.2s ease !important;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 90px !important; /* Se ainda ficar escondido, mude esse 90px para 100px ou 110px */
    right: 15px !important;
  }
}

.product-content {
  padding: 10px;
}

.product-title {
  font-size: 0.9rem;
}

.product-link {
  font-size: 0.8rem;
  padding: 8px;
}

.fake-stats {
  font-size: 0.75rem;
  color: #ff5b2e;
  font-weight: 700;
}

.fake-sold {
  font-size: 0.75rem;
  color: #2e7d32;
  font-weight: 700;
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important; 
  }
  
  .product-content {
    padding: 8px !important;
    gap: 6px !important;
  }
  
  .product-title {
    font-size: 0.85rem !important;
    line-height: 1.2;
  }
  
  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  
  .price {
    font-size: 0.95rem !important;
  }
  
  .product-link {
    font-size: 0.75rem !important;
    padding: 6px !important;
  }
}
