/* =========================================
   VARIABLES & GLOBALS
   ========================================= */
:root {
  --color-white: #ffffff;
  --color-sand-bg: #f9f6f0;
  /* Very soft sand for backgrounds */
  --color-sand-mid: #e8d8c3;
  --color-sand-dark: #c29a6e;
  /* Rich sand brown for borders/accents */

  --color-blue-main: #0a1128;
  /* Premium dark blue */
  --color-blue-dark: #050914;
  /* Deep sea dark */
  --color-blue-light: #1c2541;
  /* Shallow water */

  --color-yellow-sun: #ff6600;
  /* Sun yellow changed to warm orange as requested */
  --gradient-orange-yellow: linear-gradient(to bottom, #ff6600, #ffcc00);

  --color-text-dark: #1a202c;
  /* Almost black */
  --color-text-light: #f8f9fa;

  --color-green-btn: #1db954;
  /* Green color for buttons */
  --color-green-hover: #1ed760;

  --font-heading: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;

  --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.12);

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 14px;
  /* Reduced global font size from 16px to 14px */
}

body {
  font-family: var(--font-body);
  line-height: 1.5;
  color: var(--color-white);
  background-color: var(--color-blue-main);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-white);
}

.section-white h1,
.section-white h2,
.section-white h3,
.section-white h4,
.section-white p,
.section-white li,
.section-white div {
  color: var(--color-text-dark);
}

.section-white .highlight-yellow-text {
  background: var(--gradient-orange-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline;
}

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

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  /* Reduced padding between sections */
}

/* =========================================
   UTILITIES & SECTIONS
   ========================================= */
.bg-futevolei-1,
.bg-futevolei-2 {
  position: relative;
  z-index: 1;
}

.bg-futevolei-1::before,
.bg-futevolei-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: -1;
}

.bg-futevolei-1::before {
  background-image: url("bg-1.jpg");
  /* Substitua pelo nome da sua imagem 1 */
}

.bg-futevolei-2::before {
  background-image: url("bg-2.jpg");
  /* Substitua pelo nome da sua imagem 2 */
}

.section-white {
  background-color: var(--color-white);
  color: var(--color-text-dark);
}

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

.section-blue {
  background-color: var(--color-blue-main);
  color: var(--color-white);
}

.text-white {
  color: var(--color-white) !important;
}

.text-sand {
  color: var(--color-sand-dark);
}

.text-dark {
  color: var(--color-text-dark) !important;
}

/* Highlights */
.highlight-blue {
  color: var(--color-blue-main);
}

.highlight-yellow {
  background-color: var(--color-yellow-sun);
  color: #fff;
  font-weight: 800;
  padding: 2px 5px;
}

.highlight-yellow-text {
  background: var(--gradient-orange-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline;
}

.section-h1 {
  font-size: 2rem;
  /* Reduced from 2.5rem */
  text-align: center;
  margin-bottom: 20px;
}

.section-h2 {
  font-size: 1.15rem;
  /* Reduced from 1.25rem */
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0.9;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-auto {
  margin-top: auto;
}

.text-sm {
  font-size: 0.85rem;
}

/* =========================================
   BUTTONS
   ========================================= */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-green-btn);
  /* Green standard for conversions */
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 4px;
  /* Rectangular format */
  box-shadow: 0 5px 15px rgba(29, 185, 84, 0.4);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
  width: 100%;
  max-width: 450px;
  margin: 20px auto;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(29, 185, 84, 0.6);
  background: var(--color-green-hover);
  color: var(--color-white);
}

/* For secondary outline buttons */
.cta-outline {
  background: transparent;
  border: 2px solid var(--color-green-btn);
  color: var(--color-green-btn);
  box-shadow: none;
}

.cta-outline:hover {
  background: var(--color-green-btn);
  color: var(--color-white);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }

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

/* =========================================
   SCARCITY BANNER
   ========================================= */
.scarcity-banner {
  background: #c53030;
  color: var(--color-white);
  text-align: center;
  padding: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 100;
  position: relative;
}

.global-secure-checkout {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #4a5568;
  position: relative;
  z-index: 10;
  clear: both;
}

.global-secure-checkout i {
  color: var(--color-green-btn);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  text-align: center;
  overflow: hidden;
  position: relative;
  padding-top: 25px;
  /* Reduced empty space */
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-blue-main);
  z-index: -1;
}

.hero .container {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-disclaimer {
  background: rgba(255, 102, 0, 0.5);
  /* Orange with 50% opacity */
  color: #fff;
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
}

.hero-h1 {
  font-size: 2.1rem;
  /* Adjusted for mobile and desktop */
  margin-bottom: 20px;
  font-weight: 900;
  /* Thicker font requested */
}

.hero-h2 {
  font-size: 1.15rem;
  font-weight: 500;
  color: #cbd5e1;
  /* Lighter color for dark background */
  max-width: 800px;
  margin: 20px auto 20px auto;
}

.secure-checkout {
  font-size: 0.85rem;
  color: #718096;
  margin-top: -5px;
}

/* =========================================
   MOCKUP PLACEHOLDERS
   ========================================= */
.mockup-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.mockup-placeholder {
  background: linear-gradient(135deg, var(--color-sand-bg) 0%, #e2dcd0 100%);
  border: 2px dashed var(--color-sand-dark);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-sand-dark);
  font-weight: 600;
  gap: 15px;
  transition: var(--transition);
}

.mockup-placeholder i {
  font-size: 2.5rem;
  opacity: 0.5;
}

.main-mockup {
  width: 100%;
  max-width: 500px;
  height: 350px;
}

.video-mockup {
  width: 100%;
  max-width: 320px;
  /* Narrower to simulate 9:16 mobile format */
  aspect-ratio: 9 / 16;
  /* 9:16 Format */
  background: #000;
  border: none;
  color: white;
  border-radius: 20px;
  /* Slight roundness for phone videos */
}

.video-mockup i {
  /* Play button */
  font-size: 4rem;
  color: var(--color-blue-main);
  opacity: 1;
  cursor: pointer;
  transition: var(--transition);
}

.video-mockup i:hover {
  transform: scale(1.1);
  color: var(--color-yellow-sun);
  /* Interaction color */
}

/* =========================================
   VIDEO SECTION
   ========================================= */
.subtitle-badge {
  display: inline-block;
  background-color: var(--color-sand-dark);
  /* Using sand brown here */
  color: white;
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.video-section {
  text-align: center;
  padding: 10px 0 60px 0;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* =========================================
   BENEFITS SECTION
   ========================================= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

/* Made smaller and horizontal layout */
.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
  font-size: 2rem;
}

.benefit-card p {
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

/* =========================================
   TARGET AUDIENCE & LISTS
   ========================================= */
.check-list {
  list-style: none;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.check-list li {
  font-size: 1.05rem;
  margin-bottom: 10px;
  padding: 12px 15px;
  background: var(--color-sand-bg);
  /* Using sand color here */
  border: 1px solid var(--color-sand-mid);
  border-radius: 6px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-text-dark);
}

.check-list li i {
  color: #1db954;
  /* Green check matches buttons */
  font-size: 1.3rem;
  margin-top: 2px;
}

.target-img-container {
  text-align: center;
  margin-top: 30px;
}

.target-img {
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  max-width: 320px;
  /* Reduced the size as requested */
  width: 100%;
  height: auto;
}

/* =========================================
   TESTIMONIALS (CAROUSEL)
   ========================================= */
.carousel-container {
  position: relative;
  max-width: 700px;
  margin: 30px auto;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  padding: 10px;
}

.testimonial-img {
  width: 100%;
  max-width: 290px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  margin: 0 auto;
  display: block;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--color-sand-mid);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  color: var(--color-text-dark);
  border: 1px solid var(--color-sand-mid);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  z-index: 10;
  font-size: 1rem;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--color-sand-bg);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

/* =========================================
   WHAT YOU GET BOX
   ========================================= */
.content-box {
  background: var(--color-white);
  border: 2px solid var(--color-sand-mid);
  border-radius: 12px;
  padding: 30px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.shadow-box {
  box-shadow: var(--shadow-medium);
}

.box-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-sand-dark);
  color: var(--color-white);
  padding: 4px 15px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.box-title {
  text-align: center;
  font-size: 1.6rem;
  color: var(--color-text-dark);
  margin-bottom: 25px;
}

.styled-check-list li {
  box-shadow: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-sand-mid);
  border-radius: 0;
  padding: 10px 5px;
  color: var(--color-green-btn);
  font-weight: 600;
}

.styled-check-list li:last-child {
  border-bottom: none;
}

.and-more {
  text-align: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-blue-main);
  margin-top: 25px;
}

/* =========================================
   BONUSES
   ========================================= */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.bonus-card {
  background: var(--color-white);
  color: var(--color-text-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.bonus-mockup {
  height: 160px;
  border-radius: 0;
  border: none;
  background: var(--color-sand-bg);
  border-bottom: 1px solid var(--color-sand-mid);
}

.bonus-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bonus-tag {
  color: var(--color-sand-dark);
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.bonus-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--color-yellow-sun);
}

.highlight-bonus {
  border: 2px solid var(--color-yellow-sun);
  position: relative;
  grid-column: 1 / -1;
  /* Make the last bonus full width */
  flex-direction: row;
}

.highlight-bonus .bonus-mockup {
  width: 35%;
  height: auto;
  border-bottom: none;
  border-right: 1px solid var(--color-sand-mid);
}

@media (max-width: 768px) {
  .highlight-bonus {
    flex-direction: column;
    grid-column: auto;
  }

  .highlight-bonus .bonus-mockup {
    width: 100%;
    height: 180px;
    border-right: none;
    border-bottom: 1px solid var(--color-sand-mid);
  }
}

.bonus-disclaimer {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #e53e3e;
  font-weight: 600;
}

/* =========================================
   PLANS
   ========================================= */
.plans-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .plans-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.plan-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 30px 20px;
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  position: relative;
  border: 2px solid var(--color-sand-mid);
  transition: var(--transition);
}

.plan-complete {
  border-color: var(--color-sand-dark);
  box-shadow: var(--shadow-medium);
  z-index: 2;
  transform: scale(1.02);
}

.plan-complete:hover {
  transform: scale(1.02) translateY(-5px);
}

.plan-header {
  text-align: center;
  margin-bottom: 15px;
}

.plan-header h2 {
  font-size: 1.8rem;
  color: var(--color-text-dark);
}

.plan-complete .plan-header h2 {
  background: var(--gradient-orange-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline;
  font-size: 2.1rem;
  text-transform: uppercase;
  font-weight: 900;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

.best-choice {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-yellow-sun);
  color: #000;
  padding: 4px 16px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.small-mockup {
  height: 120px;
  margin-bottom: 15px;
  background: var(--color-sand-bg);
}

.small-check-list li {
  font-size: 0.9rem;
  padding: 6px 8px;
  margin-bottom: 5px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-sand-bg);
  color: var(--color-green-btn);
  font-weight: 600;
}

.plan-complete .small-check-list li b {
  background: var(--gradient-orange-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.savings-text {
  text-align: center;
  margin: 15px 0;
  font-size: 1rem;
  color: var(--color-text-dark);
}

.price-box {
  text-align: center;
  margin-top: 15px;
  padding: 15px 0;
  border-top: 1px dashed var(--color-sand-mid);
}

.old-price {
  text-decoration: line-through;
  color: #a0aec0;
  font-size: 1rem;
}

.highlight-red {
  color: #e53e3e;
  font-weight: 700;
}

.cash-price-big {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1db954;
  /* Green matching buttons */
}

.plan-complete .cash-price-big {
  font-size: 2.5rem;
}

.installments-small {
  font-size: 1rem;
  font-weight: 600;
  color: #a0aec0;
  /* Less contrast gray */
}

.sub-cta-text {
  text-align: center;
  font-size: 0.75rem;
  color: #718096;
  margin-top: -10px;
  margin-bottom: 15px;
}

.sub-cta-text b {
  font-weight: 800;
  color: #2d3748;
  font-size: 0.85rem;
}

.payment-icons {
  text-align: center;
  font-size: 1.8rem;
  color: var(--color-sand-dark);
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* =========================================
   GUARANTEE
   ========================================= */
.guarantee-box {
  max-width: 800px;
  margin: 40px auto 0 auto;
  background: var(--color-sand-bg);
  border: 1px solid var(--color-sand-mid);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.guarantee-box .highlight-blue,
.guarantee-box .highlight-blue h3,
.guarantee-box .highlight-blue p {
  color: var(--color-blue-main);
}

.guarantee-icon {
  font-size: 3.5rem;
  color: var(--color-blue-main);
}

.guarantee-content h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.guarantee-content p {
  font-size: 0.9rem;
}

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

/* =========================================
   STEPS
   ========================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.step-card {
  text-align: center;
  padding: 20px;
  position: relative;
  background: var(--color-sand-bg);
  border: 1px solid var(--color-sand-mid);
  border-radius: 8px;
}

.step-card.highlight-blue h3,
.step-card.highlight-blue p {
  color: var(--color-blue-main);
}

.step-number {
  width: 45px;
  height: 45px;
  background: transparent;
  color: var(--color-blue-main);
  border: 2px solid var(--color-blue-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 15px auto;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
}

/* =========================================
   FAQ
   ========================================= */
.faq-accordion {
  max-width: 800px;
  margin: 30px auto;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-sand-mid);
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--color-sand-bg);
}

.faq-question.active {
  background: var(--color-sand-dark);
  color: var(--color-white);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: var(--color-white);
}

.faq-answer p {
  padding: 15px 20px;
  font-size: 0.95rem;
  border-top: 1px solid var(--color-sand-bg);
  color: var(--color-blue-main);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--color-text-dark);
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.footer-links {
  margin: 15px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--color-sand-mid);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
}

.disclaimer {
  color: #a0aec0;
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.8rem;
}

/* =========================================
   RESPONSIVE DESIGN (MOBILE OVERRIDES)
   ========================================= */
@media (max-width: 768px) {
  .container {
    padding: 20px 15px;
  }

  /* Reduced padding for mobile */
  .hero-h1 {
    font-size: 1.6rem;
  }

  .section-h1 {
    font-size: 1.5rem;
  }

  .hero-h2 {
    font-size: 1rem;
  }

  .content-box {
    padding: 20px 15px;
  }

  .main-mockup {
    height: 200px;
  }

  .video-mockup {
    max-width: 250px;
  }

  .carousel-container {
    padding: 0 10px;
  }

  .plan-complete {
    transform: scale(1);
  }

  .plan-complete:hover {
    transform: scale(1) translateY(-3px);
  }

  .cta-button {
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .target-img {
    max-width: 100%;
  }

  /* full width on mobile */
  .popup-content {
    padding: 20px;
    width: 95%;
    max-height: 90vh;
  }

  .popup-title {
    font-size: 1.8rem;
  }

  .popup-text-block {
    font-size: 1rem;
  }

  .popup-btn-main {
    font-size: 0.95rem;
  }
}

/* =========================================
   POPUP STYLES
   ========================================= */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.popup-overlay.active {
  display: flex;
  opacity: 1;
}

.popup-content {
  background: var(--color-white);
  border-radius: 12px;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  max-height: 95vh;
  overflow-y: auto;
  position: relative;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.5s ease-out;
  border: 3px solid var(--color-yellow-sun);
  box-shadow: var(--shadow-heavy);
}

.popup-overlay.active .popup-content {
  transform: translateY(0);
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--color-text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.close-popup:hover {
  color: #e53e3e;
  transform: scale(1.1);
}

.popup-title {
  color: #e53e3e;
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 20px;
}

.popup-text-block {
  background: var(--color-sand-bg);
  border: 1px dashed var(--color-sand-dark);
  padding: 15px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #000;
}

.highlight-green-text {
  color: var(--color-green-btn);
  font-weight: 900;
}

.popup-description {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--color-text-dark);
}

.popup-mockup-container {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.popup-mockup {
  width: 200px;
  height: 140px;
}

.popup-disclaimer {
  font-size: 0.85rem;
  color: #718096;
  margin-bottom: 20px;
  font-weight: 600;
}

.popup-btn-main {
  margin: 10px auto;
  animation: pulse-strong 1.2s ease-in-out infinite;
}

@keyframes pulse-strong {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.popup-btn-secondary {
  display: block;
  margin: 15px auto 0 auto;
  font-size: 0.95rem;
  color: #000000;
  background: transparent;
  text-decoration: underline;
  padding: 5px;
  border: none;
  font-weight: 600;
  transition: var(--transition);
}

.popup-btn-secondary:hover {
  background: transparent;
  color: #333333;
  transform: none;
}

.plan-card {
  color: var(--color-text-dark);
}