/* ===========================
   GLOBAL RESET
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f7fdf8;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ===========================
   COLORS
=========================== */
:root {
  --green: #2ecc71;
  --green-dark: #27ae60;
  --green-light: #e9f9ef;
  --text-dark: #1a1a1a;
  --text-light: #555;
}

/* ===========================
   CONTAINERS
=========================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===========================
   HEADER
=========================== */
.header {
  padding: 20px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.logo {
  max-width: 140px;
  display: block;
  margin: 0 auto;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  padding: 70px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e9f9ef 0%, #f7fdf8 100%);
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  color: var(--green-dark);
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.15rem;
  margin-bottom: 25px;
  color: var(--text-light);
}

.hero-image img {
  max-width: 340px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.15));
}

/* ===========================
   CTA BUTTON
=========================== */
.cta-main {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 15px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
  font-size: 1.1rem;
}

.cta-main:hover {
  background: var(--green-dark);
  transform: scale(1.05);
}

/* ===========================
   SECTION DEFAULTS
=========================== */
section {
  padding: 70px 0;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--green-dark);
}

p {
  margin-bottom: 18px;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ===========================
   BENEFITS
=========================== */
.benefit-list {
  list-style: none;
  padding-left: 0;
}

.benefit-list li {
  background: #fff;
  padding: 12px 18px;
  margin-bottom: 10px;
  border-left: 5px solid var(--green);
  border-radius: 6px;
  font-size: 1.05rem;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid var(--green);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.testimonial span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: var(--green-dark);
}

/* ===========================
   FAQ
=========================== */
.faq-item {
  background: #fff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 5px solid var(--green);
}

.faq-item h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
}

/* ===========================
   OFFER + FINAL CTA
=========================== */
.offer,
.final-cta {
  text-align: center;
}

.offer p {
  max-width: 700px;
  margin: 0 auto 20px auto;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #fff;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid #eee;
}

.footer p {
  font-size: 0.9rem;
  color: #777;
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 768px) {

  .hero {
    padding: 50px 0;
    text-align: center;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-text h1 {
    font-size: 1.9rem;
  }

  .hero-image img {
    max-width: 240px;
  }

  section {
    padding: 45px 0;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   CTA FLUTUANTE (MOBILE)
=========================== */
.floating-cta {
  display: none;
}

@media (max-width: 768px) {
  .floating-cta {
    display: block;
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center;
    background: var(--green);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    font-size: 1.05rem;
    transition: 0.25s ease;
  }

  .floating-cta:hover {
    background: var(--green-dark);
    transform: translateX(-50%) scale(1.05);
  }
}

/* ===========================
   EXIT POPUP
=========================== */
.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.exit-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 420px;
  text-align: center;
  border-left: 6px solid var(--green);
  animation: fadeSoft 0.5s ease-out forwards;
}

.exit-content h3 {
  margin-bottom: 15px;
  color: var(--green-dark);
}

.exit-content p {
  margin-bottom: 20px;
  color: var(--text-light);
}

/* ===========================
   ANIMATIONS
=========================== */

/* Fade-in suave */
.fade-soft {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSoft 0.9s ease-out forwards;
  will-change: opacity, transform;
}

@keyframes fadeSoft {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide-up premium */
.slide-up {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 0.9s cubic-bezier(.25, .8, .25, 1) forwards;
  will-change: opacity, transform;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide-left */
.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: slideLeft 0.9s ease-out forwards;
  will-change: opacity, transform;
}

@keyframes slideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide-right */
.slide-right {
  opacity: 0;
  transform: translateX(40px);
  animation: slideRight 0.9s ease-out forwards;
  will-change: opacity, transform;
}

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation delays */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }
.delay-7 { animation-delay: 1.4s; }
