/* ==========================================================================
   MANUAL DO MINISTÉRIO DE LOUVOR - STYLESHEET
   Design System: Deep Dark Luxury with Warm Gold & Cream Accents
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #0b0d13;
  --bg-card: #131622;
  --bg-card-hover: #1a1e2e;
  --bg-glass: rgba(19, 22, 34, 0.75);
  
  --primary-gold: #d4af37;
  --primary-gold-light: #f3e5ab;
  --primary-gold-dark: #aa8620;
  --accent-gold-gradient: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  --gold-glow: rgba(212, 175, 55, 0.25);
  
  --text-main: #f5f6fa;
  --text-muted: #a0a6be;
  --text-dark: #11141d;
  
  --crimson-accent: #e63946;
  --success-green: #2ecc71;
  --border-color: rgba(212, 175, 55, 0.15);
  --border-light: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-title: 'Playfair Display', Georgia, serif;

  /* Spacing & Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography Utilities */
.text-gold {
  color: var(--primary-gold);
  background: linear-gradient(135deg, #ffe082 0%, #d4af37 50%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-box {
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--primary-gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
}

/* Header Notice Bar */
.top-bar {
  background: linear-gradient(90deg, #8b0000 0%, #b22222 50%, #8b0000 100%);
  color: #ffffff;
  text-align: center;
  padding: 10px 15px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.top-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.timer-badge {
  background: rgba(0, 0, 0, 0.3);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.95rem;
  color: #ffeb3b;
}

/* Navigation Header */
.main-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  background: rgba(11, 13, 19, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 90;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo svg {
  width: 32px;
  height: 32px;
  fill: var(--primary-gold);
}

.brand-text h1 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-main);
}

.brand-text p {
  font-size: 0.75rem;
  color: var(--primary-gold);
  letter-spacing: 0.5px;
}

/* Hero Section */
.hero-section {
  padding: 60px 0 80px;
  background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-gold-light);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 900px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

.book-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: var(--gold-glow);
  filter: blur(60px);
  border-radius: 50%;
  z-index: 1;
}

.book-image {
  position: relative;
  z-index: 2;
  max-width: 380px;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  transition: transform 0.5s ease;
}

.book-image:hover {
  transform: translateY(-8px) scale(1.02);
}

.hero-trust {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .hero-trust {
    justify-content: center;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-gold);
}

/* Call to Action Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 440px;
  padding: 20px 32px;
  background: linear-gradient(135deg, #f5d061 0%, #e6b800 50%, #c49400 100%);
  color: #0b0d13;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4), 0 0 0 2px rgba(255, 235, 150, 0.3) inset;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(30deg);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% { transform: translate(-100%, -100%) rotate(30deg); }
  20% { transform: translate(100%, 100%) rotate(30deg); }
  100% { transform: translate(100%, 100%) rotate(30deg); }
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
  background: linear-gradient(135deg, #ffdc73 0%, #f5c400 50%, #d4a000 100%);
}

.btn-cta-subtext {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
  text-align: center;
}

/* Pain Points Section */
.section-pain {
  padding: 90px 0;
  background: #0e1018;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  color: var(--primary-gold);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 30px;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  position: relative;
}

.pain-card:hover {
  border-color: rgba(230, 57, 70, 0.4);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.pain-icon {
  width: 48px;
  height: 48px;
  background: rgba(230, 57, 70, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--crimson-accent);
}

.pain-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.pain-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Solution & Atmosphere Section */
.section-solution {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, #0b0d13 0%, #111420 100%);
}

.solution-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .solution-wrapper {
    grid-template-columns: 1fr;
  }
}

.atmosphere-img-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border: 1px solid var(--border-color);
}

.atmosphere-img {
  width: 100%;
  object-fit: cover;
}

.glass-quote {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(11, 13, 19, 0.85);
  backdrop-filter: blur(12px);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.glass-quote p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--primary-gold-light);
  line-height: 1.5;
}

.glass-quote span {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.solution-content h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  line-height: 1.3;
}

.solution-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.pillar-list {
  display: grid;
  gap: 16px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.pillar-number {
  background: var(--primary-gold);
  color: var(--bg-dark);
  font-weight: 800;
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.pillar-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* Modules / Content Breakdown Section */
.section-modules {
  padding: 100px 0;
  background: #0e1018;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition-normal);
}

.module-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.module-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary-gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.module-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--text-main);
}

.module-card ul {
  list-style: none;
}

.module-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.module-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
}

/* Bonuses Section */
.section-bonuses {
  padding: 90px 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.bonus-card {
  background: linear-gradient(145deg, #161928, #111320);
  border: 1px dashed var(--primary-gold);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
}

.bonus-tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary-gold);
  color: var(--bg-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 12px;
  text-transform: uppercase;
}

.bonus-card h4 {
  font-size: 1.1rem;
  color: var(--primary-gold-light);
  margin-bottom: 10px;
}

.bonus-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.bonus-value {
  font-size: 0.85rem;
  color: var(--crimson-accent);
  font-weight: 600;
  text-decoration: line-through;
}

.bonus-free {
  color: var(--success-green);
  font-weight: 700;
  font-size: 0.95rem;
  margin-left: 8px;
}

/* Authors / Mentors Section */
.section-authors {
  padding: 90px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
}

.authors-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 860px) {
  .authors-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.author-avatar-group {
  position: relative;
}

.author-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary-gold);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.author-bio h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.author-subtitle {
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.author-bio p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}

/* Pricing Section */
.section-pricing {
  padding: 100px 0;
  background: #090a0e;
  position: relative;
}

.pricing-box {
  background: linear-gradient(180deg, #1a1e2d 0%, #111420 100%);
  border: 2px solid var(--primary-gold);
  border-radius: var(--radius-lg);
  padding: 50px 30px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
  position: relative;
}

.pricing-header-badge {
  background: linear-gradient(90deg, #e63946, #c1121f);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 24px;
}

.old-price {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.new-price-installments {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.price-big {
  font-size: clamp(3rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--primary-gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.price-cash {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.pricing-features {
  text-align: left;
  max-width: 480px;
  margin: 0 auto 40px;
  list-style: none;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.pricing-features li svg {
  width: 20px;
  height: 20px;
  fill: var(--success-green);
  flex-shrink: 0;
}

.guarantee-box {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  text-align: left;
}

.guarantee-badge-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.guarantee-text h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 6px;
}

.guarantee-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* FAQ Accordion Section */
.section-faq {
  padding: 90px 0;
  background: var(--bg-dark);
}

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  padding: 22px 24px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-gold);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(0,0,0,0.2);
}

.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Footer */
.main-footer {
  padding: 50px 0 30px;
  background: #06070a;
  border-top: 1px solid var(--border-light);
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  color: var(--primary-gold);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.social-link:hover {
  color: #fff;
}

/* Sticky Bottom Bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 13, 19, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  padding: 12px 20px;
  z-index: 99;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.5);
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.sticky-text {
  font-weight: 700;
  font-size: 0.95rem;
}

.sticky-btn {
  padding: 10px 24px;
  font-size: 0.9rem;
  width: auto;
}

@media (max-width: 600px) {
  .sticky-text {
    display: none;
  }
  .sticky-btn {
    width: 100%;
  }
}

/* Pre-Checkout Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 7, 12, 0.85);
  backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal-card {
  background: linear-gradient(160deg, #161a28 0%, #0d0f18 100%);
  border: 1px solid var(--primary-gold);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.2);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--primary-gold);
}

.modal-header-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary-gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.modal-title {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-gold-light);
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: var(--font-main);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-promise {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 4px;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-promise svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-modal-submit {
  margin-top: 6px;
  width: 100%;
  max-width: 100%;
}

