:root {
  --cream-base: #F9F4EE;
  --ivory-soft: #FEFBF7;
  --beige-light: #F9F4EE;
  --beige-warm: #EFE3D6;
  --blue-deep: #0A4C8A;
  --blue-darker: #083D6F;
  --blue-hover: #125DA5;
  --blue-text: #3A2614;
  --green-cta: #16A34A;
  --green-hover: #15803D;
  --green-darker: #14532D;
  --gold-primary: #E6C35A;
  --gold-rich: #D4AF47;
  --gold-glow: #F5E6C8;
  --brown-warm: #8B7355;
  --text-secondary: #7A5A3A;
  --border-subtle: rgba(58, 38, 20, 0.10);
  --border-gold: rgba(230, 195, 90, 0.25);
  --shadow-soft: 0 8px 24px rgba(58, 38, 20, 0.08);
  --shadow-hover: 0 12px 32px rgba(58, 38, 20, 0.12);
  --shadow-strong: 0 16px 48px rgba(58, 38, 20, 0.14);
  --radius: 14px;
  --radius-lg: 16px;
  --radius-sm: 12px;
  --page-gradient: linear-gradient(180deg, #F9F4EE 0%, #F9F4EE 100%);
  --hero-gradient: linear-gradient(135deg, rgba(58, 38, 20, 0.75) 0%, rgba(58, 38, 20, 0.65) 100%);
  --hero-glow: radial-gradient(circle at 75% 25%, rgba(230, 195, 90, 0.10) 0%, rgba(230, 195, 90, 0) 60%);
  --card-gradient: linear-gradient(180deg, #FEFBF7 0%, #F9F4EE 100%);
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --space-xs: 6px;
  --space-sm: 10px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 40px;
}

*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

button, a, input, select, textarea {
  -webkit-appearance: none;
  appearance: none;
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--blue-text);
  background: var(--page-gradient);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media (min-width: 768px) {
  body { font-size: 18px; }
}

h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .offer-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0.3px;
  line-height: 1.25;
  margin-top: 0;
  text-shadow: none;
}

.hero-title {
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.2px;
  color: #3A2614;
  text-shadow:
    1px 1px 2px rgba(58, 38, 20, 0.15),
    2px 2px 4px rgba(58, 38, 20, 0.10),
    0 1px 1px rgba(58, 38, 20, 0.08);
  animation: heroTitleFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
}

@keyframes heroTitleFadeIn {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: var(--space-sm);
  text-shadow: none;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.35;
  text-shadow: none;
  color: var(--text-secondary);
}

.hero-pastoral {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--blue-text);
}

.lead {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.text-muted { color: var(--text-secondary) !important; opacity: 0.85; }
.text-gold, .icon-gold { color: var(--gold-primary) !important; }

em, .verse-text-simple {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--blue-text);
}

section {
  padding: var(--space-xl) 0;
  position: relative;
}

#home { padding: 0 !important; }

section::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent 0%, rgba(249, 244, 238, 0.2) 100%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

section:last-of-type::after { display: none; }

@media (max-width: 992px) {
  section { padding: var(--space-lg) 0; }
  section::after { height: 40px; }
}

@media (max-width: 576px) {
  section { padding: var(--space-md) 0; }
  section::after { height: 30px; }
}

.section-wrap {
  padding: var(--space-md) var(--space-md);
  background: var(--card-gradient);
  border: none;
  border-radius: var(--radius);
  box-shadow: none;
}

@media (max-width: 576px) {
  .section-wrap { padding: var(--space-sm) var(--space-sm); }
}

.bg-marfim {
  background: linear-gradient(to bottom, var(--beige-light), var(--beige-warm)) !important;
}

.bg-azul-suave {
  background: linear-gradient(to bottom, var(--cream-base), var(--beige-light)) !important;
}

.bg-azul-noite {
  background: var(--blue-text) !important;
  color: var(--ivory-soft) !important;
}

#home {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  background: transparent;
  min-height: 100vh;
}

#home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/fundo-hero.jpg') center/cover no-repeat;
  background-attachment: scroll;
  background-position: center center;
  z-index: 0;
}

@media (max-width: 768px) {
  #home::before {
    background-image: url('../images/fundo-hero-mobile.jpg');
    background-size: cover;
    background-position: center center;
  }
}

#home > * { position: relative; z-index: 2; }

#home .container {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
  #home .container {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
  }
}

#home .hero-title {
  color: #3A2614 !important;
  text-shadow:
    1px 1px 2px rgba(58, 38, 20, 0.15),
    2px 2px 4px rgba(58, 38, 20, 0.10),
    0 1px 1px rgba(58, 38, 20, 0.08) !important;
}

#home .hero-subtitle { color: #2A1A0A !important; text-shadow: none; }
#home .hero-pastoral, #home .hero-bullets li, #home small { color: #2A1A0A !important; text-shadow: none; }

@media (max-width: 768px) {
  #home::before {
    background-position: center top;
    background-size: cover;
  }
}

#home .ratio {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  margin-bottom: var(--space-md);
}

.hero-bullets { text-align: left; max-width: 600px; margin: var(--space-sm) auto; }
.hero-bullets li {
  font-size: clamp(13px, 1.6vw, 16px);
  margin-bottom: var(--space-xs);
  display: flex; align-items: center; gap: var(--space-xs);
}

.card-light, .card-premium, .section-soft,
.bonus-card, .testimonial-card, .step-card,
.credencial-item, .urgencia-box {
  background: var(--ivory-soft);
  border: none;
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: 0 2px 8px rgba(58, 38, 20, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-light:hover, .testimonial-card:hover,
.step-card:hover, .credencial-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.feature-cards .card-light {
  height: 100%;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}

.feature-cards .card-light h4 {
  font-size: 1.25rem;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-xs);
  color: var(--blue-deep);
}

.btn-cta {
  background: var(--blue-deep);
  color: #FFFFFF !important;
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 8px;
  min-height: 52px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(10, 76, 138, 0.15);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  text-shadow: none;
}

.btn-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(230, 195, 90, 0.3);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.btn-cta:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(18, 93, 165, 0.25);
  color: #FFFFFF !important;
}

.btn-cta:active { transform: translateY(0); box-shadow: 0 1px 4px rgba(10, 76, 138, 0.20); }
.btn-cta:focus-visible { outline: 3px solid var(--gold-glow); outline-offset: 3px; box-shadow: 0 0 0 4px rgba(245, 230, 200, 0.35); }

.btn-checkout {
  background: var(--green-cta) !important;
  color: #FFFFFF !important;
  animation: pulseBuyButton 2s ease-in-out infinite;
}

@keyframes pulseBuyButton {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4); }
  50% { transform: scale(1.03); box-shadow: 0 6px 20px rgba(22, 163, 74, 0.6); }
}

.btn-checkout:hover {
  background: var(--green-hover) !important;
  box-shadow: 0 6px 18px rgba(21, 128, 61, 0.30), inset 0 1px 0 rgba(230, 195, 90, 0.20) !important;
  color: #FFFFFF !important;
  animation: none;
}

.btn-link {
  color: var(--text-secondary);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

#oferta-especial .card-premium {
  background: var(--card-gradient);
  border: none;
  box-shadow: 0 4px 16px rgba(58, 38, 20, 0.08);
  position: relative;
}

.discount-badge-corner {
  background: var(--gold-primary);
  color: var(--blue-text);
  font-weight: 700;
  font-size: 1.0rem;
  border-radius: var(--radius-sm) 0 var(--radius-sm) 0;
  padding: 6px 16px;
  box-shadow: 0 4px 12px rgba(230, 195, 90, 0.25);
}

.new-price-container {
  background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue-darker) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--border-gold);
  box-shadow: 0 12px 32px rgba(13, 36, 73, 0.20);
  margin: var(--space-md) auto;
  max-width: 400px;
}

.new-price {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  margin: var(--space-xs) 0;
}

.price-note { color: var(--gold-glow); font-weight: 700; font-size: 15px; }
.old-price { font-size: 1.125rem; color: var(--text-secondary); }

.countdown-bg {
  background: rgba(230, 195, 90, 0.08) !important;
  border-radius: var(--radius);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--border-gold);
}

.timer-inline { color: var(--text-secondary); font-weight: 600; font-size: 1.0rem; }
.timer-inline .fw-bold { color: var(--blue-text) !important; font-size: 1.25rem; }

.accordion-item {
  border: none !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(58, 38, 20, 0.06);
  margin-bottom: var(--space-xs);
  background: var(--ivory-soft) !important;
}

.accordion-button {
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.2px;
  border-radius: var(--radius-sm) !important;
  border: none;
  background: var(--cream-base);
  color: var(--blue-deep);
  padding: 14px 18px;
  transition: all 0.25s ease;
}

.accordion-button:not(.collapsed) {
  color: var(--blue-deep);
  background: linear-gradient(180deg, #FFF8F0, #FFF0D9) !important;
  border-color: var(--border-gold);
  box-shadow: 0 6px 16px rgba(212, 175, 142, 0.12) inset;
}

.accordion-button:hover { background: var(--beige-light); }
.accordion-button:focus-visible { box-shadow: 0 0 0 0.2rem var(--border-gold); outline: 3px solid var(--gold-glow); outline-offset: 2px; }

.accordion-body {
  padding: var(--space-sm) var(--space-md);
  background: var(--ivory-soft);
}

.accordion-body ul li { margin-bottom: 6px; color: var(--blue-text); }

.testimonial-card {
  padding: var(--space-md);
  background: var(--ivory-soft);
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(58, 38, 20, 0.04);
  text-align: center;
}

.testimonial-stars i { color: var(--gold-primary); margin-right: 3px; font-size: 1.125rem; }

.testimonial-card p {
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--blue-text);
  margin-bottom: var(--space-sm);
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  filter: invert(1) brightness(0.5) sepia(1) hue-rotate(10deg) saturate(2);
}

.quiz-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(13, 36, 73, 0.70) !important;
  backdrop-filter: blur(4px);
  display: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.quiz-overlay.show { display: block; }

.quiz-container {
  max-width: 760px;
  margin: 40px auto;
  background: var(--card-gradient) !important;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(13, 36, 73, 0.25);
  padding: var(--space-lg);
  position: relative;
  border: 2px solid var(--border-gold);
}

.quiz-close {
  position: absolute;
  right: 16px; top: 16px;
  background: transparent;
  border: 0;
  color: var(--blue-text);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.quiz-close:hover { background: rgba(27, 58, 107, 0.08); }

.quiz-close:focus-visible {
  outline: 3px solid var(--gold-glow);
  outline-offset: 2px;
}
.quiz-progress { margin-top: var(--space-md); }

.quiz-progress .progress-bar {
  background: var(--cream-base);
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
}

.quiz-progress .progress-fill {
  height: 100%;
  width: 33%;
  background: var(--gold-primary);
  transition: width 0.3s ease;
  border-radius: 999px;
}

.quiz-option {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; margin-bottom: 12px;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: #fff;
  transition: all 0.2s ease;
}

.quiz-option:hover { border-color: var(--gold-primary); background: var(--beige-light); }

.quiz-option:focus-visible {
  outline: 3px solid var(--gold-glow);
  outline-offset: 2px;
}

.quiz-option.selected {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 142, 0.2);
  background: #FFFCF3;
}

.quiz-option-radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--brown-warm);
  position: relative;
  flex-shrink: 0;
}

.quiz-option.selected .quiz-option-radio { border-color: var(--gold-primary); }

.quiz-option.selected .quiz-option-radio::after {
  content: "";
  position: absolute; inset: 3px;
  background: var(--gold-primary);
  border-radius: 50%;
}

.quiz-option-text { font-size: 1rem; color: var(--blue-text); flex: 1; }

.footer-simple {
  background: var(--cream-base);
  padding: var(--space-xl) 0;
}

.verse-container {
  background: linear-gradient(90deg, var(--blue-deep) 0%, var(--blue-darker) 90%);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  color: var(--ivory-soft);
  max-width: 700px;
  margin: 0 auto var(--space-md);
}

.verse-text-simple {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: var(--space-xs);
  color: #ffffff !important;
}

.verse-reference-simple { font-size: 0.9375rem; opacity: 0.9; margin: 0; }

.footer-copyright {
  background: linear-gradient(180deg, var(--blue-darker) 0%, #081829 100%);
  padding: var(--space-md) 0;
}

.footer-copyright p {
  color: var(--ivory-soft);
  margin: 0;
  font-size: 0.9375rem;
}

.cta-final-section.with-overlay {
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.50)),
              var(--blue-darker) center/cover no-repeat;
  color: #fff;
  padding: var(--space-2xl) 0;
  min-height: 420px;
  display: flex;
  align-items: center; justify-content: center;
}

.cta-final-section.with-overlay .section-title,
.cta-final-section.with-overlay .lead,
.cta-final-section.with-overlay p { color: #fff !important; }

.urgencia-final {
  background: rgba(212, 175, 142, 0.12);
  border: 2px solid var(--gold-glow);
  border-radius: var(--radius);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

*:focus-visible { 
  outline: 3px solid var(--gold-glow); 
  outline-offset: 3px; 
}

.btn:focus-visible, .btn-cta:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 142, 0.35) !important;
  outline: 3px solid var(--gold-glow);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

img, svg, video, iframe { display: block; max-width: 100%; height: auto; }

a { text-underline-offset: 3px; transition: color 0.2s ease; }
a:hover { color: var(--gold-rich); }

.list-unstyled { list-style: none; padding-left: 0; margin: 0; }

@media (max-width: 768px) {
  .btn-cta { padding: 14px 24px; font-size: 15px; min-height: 52px; }
  .quiz-container { margin: 24px 12px; padding: var(--space-md); }
  .section-wrap { padding: var(--space-md); }
  #oferta-especial .new-price { font-size: 42px; }
}

@media (max-width: 576px) {
  .hero-title { font-size: clamp(28px, 8vw, 36px); }
  .hero-subtitle { font-size: clamp(15px, 4vw, 19px); }
  .hero-pastoral { font-size: clamp(13px, 3.5vw, 15px); }
  .hero-bullets li { font-size: clamp(12px, 3vw, 14px); }
  .section-title { font-size: 26px; }
  #home { padding: 0 0 var(--space-lg) 0; }
}

.section-wrap, .card-light, .testimonial-card {
  content-visibility: auto;
  contain-intrinsic-size: 600px;
}

@media print {
  .quiz-overlay, .btn-cta, .countdown-section { display: none !important; }
  * { background: white !important; color: black !important; box-shadow: none !important; }
}

.teo15-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(13, 36, 73, 0.85);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  padding: env(safe-area-inset-top, 20px) env(safe-area-inset-right, 20px) env(safe-area-inset-bottom, 20px) env(safe-area-inset-left, 20px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.teo15-backdrop.show {
  display: flex;
  opacity: 1;
}

.teo15-modal {
  position: relative;
  max-width: 740px;
  max-height: 75vh;
  width: 100%;
  background: var(--card-gradient);
  border-radius: 18px;
  border: 2px solid var(--border-gold);
  box-shadow: 0 24px 64px rgba(13, 36, 73, 0.35);
  padding: 0;
  margin: 12px;
  transform: scale(0.92);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.teo15-backdrop.show .teo15-modal {
  transform: scale(1);
  opacity: 1;
}

.teo15-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(58, 38, 20, 0.06);
  border: none;
  border-radius: 50%;
  color: var(--blue-text);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.teo15-close:hover {
  background: rgba(58, 38, 20, 0.12);
  transform: rotate(90deg);
}

.teo15-close:focus-visible {
  outline: 3px solid var(--gold-glow);
  outline-offset: 2px;
}

.teo15-backdrop *,
.teo15-modal * {
  -webkit-tap-highlight-color: transparent;
}

.teo15-modal button:focus-visible,
.teo15-modal a:focus-visible {
  outline: 3px solid var(--gold-glow);
  outline-offset: 2px;
}

.teo15-header {
  padding: 20px 56px 18px 20px;
  text-align: center;
  border-bottom: 2px solid rgba(230, 195, 90, 0.25);
  flex-shrink: 0;
}

.teo15-urgency-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1B3A6B 0%, #0D2449 100%);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
  border: 1px solid rgba(230, 195, 90, 0.3);
  box-shadow: 0 2px 8px rgba(27, 58, 107, 0.25);
  letter-spacing: 0.3px;
}

.teo15-urgency-badge i {
  color: var(--gold-primary);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.teo15-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 800;
  color: var(--blue-deep);
  margin: 0 0 8px;
  line-height: 1.2;
}

.teo15-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

.teo15-body {
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.teo15-coupon-display {
  background: linear-gradient(135deg, #1B3A6B 0%, #0D2449 100%);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  margin-bottom: 20px;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 4px 16px rgba(27, 58, 107, 0.3);
  position: relative;
}

.teo15-coupon-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.teo15-coupon-code {
  font-family: 'Courier New', monospace;
  font-size: clamp(24px, 4.5vw, 30px);
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.12em;
  margin: 8px 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.teo15-coupon-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  line-height: 1.4;
}

.teo15-day-highlight,
.teo15-day-highlight-inline {
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: lowercase;
}

.teo15-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.teo15-benefits-list li {
  font-size: 14px;
  color: var(--blue-text);
  margin-bottom: 10px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}

.teo15-benefits-list li:last-child {
  margin-bottom: 0;
}

.teo15-benefits-list i {
  flex-shrink: 0;
  margin-top: 2px;
}

.teo15-footer {
  padding: 18px 24px 20px;
  text-align: center;
  background: var(--card-gradient);
  border-top: 1px solid var(--border-subtle);
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
  z-index: 10;
}

.btn-teo15-primary {
  background: var(--green-cta) !important;
  color: #FFFFFF !important;
  width: 100%;
  font-size: 15px;
  padding: 16px 24px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-teo15-primary:hover {
  background: var(--green-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(21, 128, 61, 0.45);
}

.btn-teo15-primary:active {
  transform: translateY(0);
}

.teo15-cta-note {
  margin: 10px 0 8px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.teo15-secure-note {
  margin: 0;
  font-size: 12px;
  color: var(--text-secondary);
  opacity: 0.85;
}

@media (max-width: 576px) {
  .teo15-modal {
    max-width: 100%;
    margin: 8px;
    border-radius: 16px;
  }
  
  .teo15-header {
    padding: 18px 52px 16px 18px;
  }
  
  .teo15-urgency-badge {
    font-size: 12px;
    padding: 7px 14px;
  }
  
  .teo15-title {
    font-size: clamp(22px, 5vw, 26px);
  }
  
  .teo15-body {
    padding: 16px 18px;
  }
  
  .teo15-footer {
    padding: 16px 18px 18px;
  }
  
  .teo15-coupon-display {
    padding: 14px 18px;
  }
  
  .teo15-coupon-code {
    font-size: clamp(22px, 5vw, 26px);
    letter-spacing: 0.1em;
  }
  
  .btn-teo15-primary {
    font-size: 14px;
    padding: 15px 20px;
  }
  
  .teo15-subtitle {
    font-size: 14px;
  }
  
  .teo15-benefits-list li {
    font-size: 13px;
  }
  
  .teo15-cta-note {
    font-size: 12px;
  }
}
