* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2c5f2d;
  --primary-dark: #1e4620;
  --secondary-color: #4a9a4d;
  --accent-color: #ff6b35;
  --text-dark: #1a1a1a;
  --text-light: #4a4a4a;
  /* Cor de texto claro */
  --bg-light: #f8f9fa;
  /* Cor de fundo clara - alterada de #f8f9fa */
  --white: #ffffff;
  --success: #28a745;
  --border-radius: 8px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Add padding to body to prevent content from being hidden by the fixed header */
body {
  padding-top: 80px;
  /* Adjust this value to match the header height */
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--bg-light);
}

/* Header & Navigation */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 15px 0;
  transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

#main-header.scrolled {
  background-color: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 50px;
  transition: height 0.3s ease;
}

#main-header.scrolled .nav-logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 28px;
  font-size: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 5px 0;
  transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
  padding-top: 18px;
  /* Adjust this value to match the header height */
}

@media (max-width: 968px) {
  html {
    padding-top: 70px;
  }

  body {
    padding-top: 10px;
    /* Adjust this value to match the header height */
  }

  /* Adjust for smaller header */
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(20, 20, 30, 0.92) 0%, rgba(40, 20, 30, 0.88) 100%), url('public/hero-heart.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 32px;
  opacity: 1;
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-product-image {
  text-align: center;
  margin: 32px 0;
}

.hero-product-image img {
  max-width: 280px;
  width: 100%;
  height: auto;
  /* Sombra para destacar o produto */
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.hero-product-image-full {
  text-align: center;
  margin-top: 48px;
}

.hero-product-image-full img {
  max-width: 480px;
  width: 100%;
  height: auto;
  /* Sombra para destacar o produto */
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.trust-badges {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  opacity: 1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.trust-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Hero Form */
.hero-form-container {
  background: rgba(255, 255, 255, 0.98);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.hero-cta-container {
  background: rgba(255, 255, 255, 0.98);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.countdown-timer {
  background: linear-gradient(135deg, #dc143c, #8b0000);
  color: var(--white);
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(220, 20, 60, 0.4);
}

.countdown-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  opacity: 0.95;
}

.countdown-display {
  font-size: 2.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 2px;
}

.hero-price-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.hero-old-price {
  font-size: 2rem;
  color: var(--text-light);
  text-decoration: line-through;
  opacity: 0.8;
}

.hero-new-price {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  text-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.promo-date-hero {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}

.hero-form-container h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 8px;
  text-align: center;
}

.hero-form-container .form-subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 24px;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input {
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #dc143c;
  box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.hero-form-submit {
  background: linear-gradient(135deg, var(--accent-color), #ff5722);
  color: var(--white);
  padding: 16px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

.hero-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.hero-form-submit:active {
  transform: translateY(0);
}

.form-security-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 8px;
  justify-content: center;
}

.form-security-icon {
  color: var(--success);
}

/* CTA Buttons */
.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 18px 48px;
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background-color: #ff5722;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button span {
  position: relative;
  z-index: 1;
}

.cta-container {
  text-align: center;
  margin-top: 32px;
}

.cta-subtext {
  color: var(--white);
  opacity: 0.9;
  margin-top: 16px;
  font-size: 0.9rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


/* Section Titles */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Ingredients */
.ingredients-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.ingredient-item {
  background: var(--white);
  padding: 24px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow);
}

.ingredient-item h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.ingredient-item p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.95) 0%, rgba(30, 70, 32, 0.95) 100%), url('public/happy-couple.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  color: var(--white);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials .section-title,
.testimonials .section-subtitle {
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-rating {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  opacity: 0.9;
}

/* Doctor Section */
.doctor-section {
  background: var(--white);
}

.doctor-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-light);
  padding: 48px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.doctor-image {
  width: 100%;
  max-width: 300px;
  height: 300px;
  background: url('public/doctor.jpg');
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  overflow: hidden;
}

.doctor-quote h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.doctor-quote p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.doctor-name {
  font-weight: 600;
  color: var(--text-dark);
}

/* Urgency Banner */
.urgency-banner {
  background: linear-gradient(90deg, var(--accent-color), #ff8c5a);
  color: var(--white);
  padding: 24px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.stat-card {
  text-align: center;
  padding: 32px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-light);
  font-size: 1rem;
}

/* Form Section */
.form-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 80px 0;
}

.form-section .section-title,
.form-section .section-subtitle {
  color: var(--white);
}

.form-container {
  max-width: 600px;
  margin: 48px auto 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 48px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-placeholder {
  background: rgba(255, 255, 255, 0.9);
  padding: 48px;
  border-radius: var(--border-radius);
  text-align: center;
  color: var(--text-dark);
}

.form-placeholder p {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.form-features {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  text-align: left;
}

.form-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.form-feature-icon {
  width: 24px;
  height: 24px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

/* Footer */
footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 48px 0 24px;
  text-align: center;
}

.footer-content p {
  opacity: 0.8;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 24px;
}

.footer-disclaimer {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 32px;
  line-height: 1.6;
}

/* How to Buy Section */
.how-to-buy-container {
  grid-template-columns: 1fr;
  width: 100%;
  gap: 48px;
}

.how-to-buy-image {
  text-align: center;
  display: none;
}



/* Secure Purchase Steps */
.secure-purchase-steps {
  display: grid;
  gap: 24px;
}

.secure-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-light);
  padding: 24px;
  border-radius: var(--border-radius);
}

.secure-step-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.secure-step h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.secure-step p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.secure-step-text h3 {
  margin-bottom: 8px;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  margin-top: 48px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  max-width: 400px;
  width: 100%;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 24px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pricing-header p {
  font-size: 1rem;
  opacity: 0.9;
}

.price-display {
  padding: 32px 24px;
  color: var(--text-dark);
}

.price-values {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.old-price {
  font-size: 1.8rem;
  color: var(--text-light);
  text-decoration: line-through;
  opacity: 0.7;
}

.price-amount {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.price-currency {
  font-size: 1.5rem;
  vertical-align: top;
  margin-right: 4px;
}

.price-period {
  display: block;
  font-size: 1rem;
  color: var(--text-light);
}

.pricing-features {
  list-style: none;
  padding: 0 32px;
  margin-bottom: 32px;
  text-align: left;
  display: inline-block;
}

.pricing-button {
  background: var(--accent-color);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 40px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.pricing-button:hover {
  background: #ff5722;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 48px auto 0;
  border-top: 1px solid #ddd;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  font-family: inherit;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding-bottom 0.4s ease-out;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  /* Adjust if answer is longer */
  padding-bottom: 24px;
  transition: max-height 0.5s ease-in, padding-bottom 0.5s ease-in;
}

.final-reassurance {
  text-align: center;
  margin-top: 64px;
  padding: 32px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.final-reassurance p {
  max-width: 600px;
  margin: 0 auto 24px;
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Scroll Animation */
.fade-in {
  /* As animações de fade-in foram removidas para garantir que o conteúdo seja sempre visível. */
}

/* Exit Intent Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  padding: 24px;
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 650px;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.modal-overlay.visible .modal-content {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
}

.modal-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.modal-promo-text {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}


.modal-timer {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 24px;
}

.modal-body {
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
}

.modal-offer-details {
  width: 100%;
}

.modal-product-image {
  flex-shrink: 0;
}

.modal-product-image img {
  max-width: 150px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.modal-price {
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  justify-content: center;
}

.modal-old-price {
  font-size: 1.5rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.modal-new-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

.modal-text {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal-highlight {
  display: block;
  margin-top: 8px;
  font-weight: 700;
  color: var(--primary-dark);
}

.modal-cta-button {
  width: 100%;
  padding: 16px;
  font-size: 1.2rem;
}

@media (max-width: 600px) {
  .modal-body {
    flex-direction: column;
    text-align: center;
  }

  .modal-product-image img {
    max-width: 120px;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-price {
    justify-content: center;
  }

  .modal-content {
    padding: 24px;
  }
}

/* --- Navigation Responsive --- */
@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: #1a1a1a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.4s ease-in-out;
  }

  #main-header.nav-open .nav-links {
    right: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-cta {
    display: none;
    /* Hide CTA button on smaller screens, can be moved into mobile menu if needed */
  }

  .mobile-menu-toggle {
    display: block;
  }

  /* Hamburger animation */
  #main-header.nav-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #main-header.nav-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  #main-header.nav-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Responsive */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-text {
    text-align: center;
  }

  .trust-badges {
    justify-content: center;
  }

}

@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .trust-badges {
    gap: 16px;
  }

  .doctor-content {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .benefits-grid,
  .ingredients-list,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 32px 24px;
  }

  .cta-button {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
}

/* Estilos do formulário do Modal de Inatividade */
#form-container-iq9alpk-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  /* z-index maior para ficar sobre o modal principal */
}

#form-container-iq9alpk-modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 90%;
  width: 350px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

#form-container-iq9alpk-modal-overlay.show #form-container-iq9alpk-modal-content {
  transform: scale(1);
  opacity: 1;
}

/* Estilos do Ícone de Sucesso */
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #7ac142;
  animation: fill-success .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

/* Estilos do Ícone de Erro */
.error-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #ef4444;
  animation: fill-error .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.error-icon__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #ef4444;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.error-icon__line {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

/* Controle de visibilidade dos ícones */
.modal-form-feedback .checkmark,
.modal-form-feedback .error-icon {
  display: none;
}

.modal-form-feedback.success .checkmark {
  display: block;
}

.modal-form-feedback.error .error-icon {
  display: block;
}

#form-btn-2m0pukx:hover {
  transform: scale(1.05);
}