@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

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

* {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
}

a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

#root,
#__next {
  isolation: isolate;
}

button,
a,
select {
  cursor: pointer;
}

/* =========================
   Utils – Global Layout
   ========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  color: #1f2933;
  background-color: #ffffff;
}

/* Container padrão */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Sections padrão */
.section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
}
/* Conteúdo central */
.content {
  width: 100%;
}

/* Espaçamento vertical entre blocos */
.mt-sm {
  margin-top: 16px;
}

.mt-md {
  margin-top: 32px;
}

.mt-lg {
  margin-top: 48px;
}

.mb-sm {
  margin-bottom: 16px;
}

.mb-md {
  margin-bottom: 32px;
}

.mb-lg {
  margin-bottom: 48px;
}

/* Centralização */
.text-center {
  text-align: center;
}

/* Botão base */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

/* Botão primário (Prostadine) */
.btn-primary {
  background-color: #ffd84d;
  color: #1f3a2f;
}

.btn-primary:hover {
  background-color: #ffcc1a;
  transform: translateY(-1px);
}

/* =========================
   Prostadine Header Styles
   ========================= */
.prostadine-header {
  background: linear-gradient(90deg, #0f3d2e, #1f6b4f);
  padding: 16px 0;
  border-bottom: 2px solid #e5f3ec;
}

.brand-logo {
  max-width: 200px;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .header-container .brand {
    margin-bottom: 10px;
  }
}

/* Brand */
.brand a {
  text-decoration: none;
  color: #ffffff;
}

.brand-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: block;
}

.brand-tagline {
  font-size: 13px;
  opacity: 0.85;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: #eafaf3;
}

.trust-badges span {
  white-space: nowrap;
}

/* CTA Button */
.header-cta .btn-primary {
  background-color: #ffd84d;
  color: #1f3a2f;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-cta .btn-primary:hover {
  background-color: #ffcc1a;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 900px) {
  .trust-badges {
    display: none;
  }
}
@media (max-width: 600px) {
  .header-container {
    flex-direction: column;
    gap: 14px;
  }
  .brand-name {
    font-size: 22px;
  }
}
.footer-presell {
  background: #0f3d2e;
  color: #cbd5e1;
  font-family: "Inter", sans-serif;
  padding: 4rem 0 2rem;
  font-size: 0.95rem;
}
.footer-presell .section-inner {
  max-width: 1200px;
}
.footer-presell .footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.footer-presell .footer-brand {
  max-width: 420px;
}
@media (max-width: 768px) {
  .footer-presell .footer-brand {
    text-align: center;
  }
}
.footer-presell .footer-brand h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.footer-presell .footer-brand p {
  line-height: 1.6;
  color: #94a3b8;
}
.footer-presell .footer-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.footer-presell .footer-trust img {
  max-height: 65px;
  opacity: 0.9;
}
.footer-presell .footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-presell .footer-disclaimer p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #94a3b8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.footer-presell .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.footer-presell .footer-bottom p {
  font-size: 0.85rem;
  color: #94a3b8;
}
.footer-presell .footer-links {
  display: flex;
  gap: 1.25rem;
}
.footer-presell .footer-links a {
  font-size: 0.85rem;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-presell .footer-links a:hover {
  color: #22c55e;
}

/* =========================
   Prostadine Page Styles
   ========================= */
#prostadine-page {
  font-family: "Inter", Arial, sans-serif;
}

/* ---------- Headings ---------- */
#prostadine-page h1 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #0f3d2e;
}

#prostadine-page h2 {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 600;
  color: #0f3d2e;
}

/* ---------- Text ---------- */
#prostadine-page p {
  font-size: 18px;
  line-height: 1.7;
  color: #374151;
}

.hero-product {
  display: flex;
  justify-content: center;
}
.hero-product img {
  max-width: 300px;
}

.subtitle {
  font-size: 20px;
  color: #4b5563;
}

/* ---------- HERO ---------- */
.section-hero {
  background: linear-gradient(180deg, #eafaf3, #ffffff);
}

.section-hero h1 {
  max-width: 820px;
  margin: 0 auto;
}

.section-hero .subtitle {
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- PROBLEM ---------- */
.section-problem {
  background-color: #0f3d2e;
}

.section-problem h2 {
  color: #fff !important;
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1rem;
}

.problem-list li {
  font-size: 18px;
  padding-left: 28px;
  margin-bottom: 14px;
  position: relative;
  color: #eafaf3;
}

.problem-list li::before {
  content: "✖";
  position: absolute;
  left: 0;
  color: #c0392b;
  font-weight: 700;
}

/* ---------- AUTHORITY ---------- */
.section-authority {
  background-color: #ffffff;
}

.section-authority p {
  max-width: 900px;
}

/* ---------- SOLUTION ---------- */
.section-solution {
  background: linear-gradient(180deg, #ffffff, #f3fdf8);
}

/* ---------- BENEFITS ---------- */
.section-benefits {
  background-color: #0f3d2e;
}

.section-benefits h2 {
  color: #fff !important;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 32px;
}

.benefits-list li {
  font-size: 18px;
  padding-left: 32px;
  margin-bottom: 16px;
  position: relative;
  color: #eafaf3;
}

.benefits-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffd84d;
  font-weight: 700;
}

/* ---------- CTA ---------- */
.section-cta {
  background: linear-gradient(180deg, #f8faf9, #eafaf3);
}

.section-cta p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  #prostadine-page h1 {
    font-size: 34px;
  }
  #prostadine-page h2 {
    font-size: 26px;
  }
  #prostadine-page p {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  #prostadine-page h1 {
    font-size: 30px;
  }
  #prostadine-page h2 {
    font-size: 24px;
  }
  .subtitle {
    font-size: 18px;
  }
}
/* =========================
   Visual Layout Enhancements
   ========================= */
.split-layout {
  display: flex;
  align-items: stretch;
  gap: 60px;
}

.split-layout .text {
  flex: 1;
}

.split-layout .image {
  flex: 1;
  text-align: center;
}

.split-layout img {
  max-width: 100%;
  height: auto;
}

/* Product Box */
.trust-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

/* CTA Icon */
.cta-icon {
  max-width: 200px;
  margin: 0 auto 16px;
}

.cta-icon img {
  width: 100%;
}

/* Problem Image */
.product-box {
  display: flex;
  justify-content: center;
  flex-wrap: unset;
}

/* Responsive */
@media (max-width: 900px) {
  .split-layout {
    flex-direction: column;
    gap: 40px;
  }
}
/* =========================
   Sticky Header CTA (Top)
   ========================= */
.sticky-header-cta {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 61, 46, 0.96);
  backdrop-filter: blur(6px);
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sticky-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-message {
  color: #eafaf3;
  font-size: 15px;
  font-weight: 500;
}

/* Visible state */
.sticky-header-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .sticky-message {
    display: none;
  }
  .sticky-header-inner {
    justify-content: center;
  }
}
/* =========================
   Scroll Animations
   ========================= */
.animate {
  opacity: 0;
  transform: translateY(24px);
  animation-fill-mode: forwards;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
}

.fade-up {
  animation-name: fadeUp;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}