/* ==========================================================================
   LAUNCH EVENT DESIGN SYSTEM (Consistent with Main Site)
   ========================================================================== */
:root {
  /* Elegant Color Palette */
  --color-bg-linen: #FDFBF9;       /* Light warm off-white */
  --color-bg-peach: #FAF0EC;       /* Soft maternal peach/terracotta tint */
  --color-bg-sand: #F5ECE5;        /* Soft warm sand/clay */
  --color-bg-white: #FFFFFF;       /* Pure card white */
  
  --color-accent: #D46A55;         /* Warm Terracotta */
  --color-accent-hover: #BD5844;   /* Deeper Terracotta */
  --color-accent-light: #FDF4F1;   /* Translucent peach */
  
  --color-text-cocoa: #3D2E29;     /* Deep Espresso Cocoa (headers/logo) */
  --color-text-taupe: #6E5A53;     /* Muted warm taupe (body copy) */
  --color-text-white: #FFFFFF;
  
  --color-border-light: rgba(212, 106, 85, 0.15); /* Terracotta-tinted border */
  --color-border-soft: rgba(110, 90, 83, 0.08);   /* Subtle neutral border */
  
  /* Typography */
  --font-display: 'Montserrat', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  
  /* Shadow & Glow */
  --shadow-sm: 0 4px 12px rgba(110, 90, 83, 0.03);
  --shadow-md: 0 10px 30px rgba(110, 90, 83, 0.06);
  --shadow-lg: 0 20px 48px rgba(110, 90, 83, 0.1);
  --glow-warm: 0 0 35px rgba(220, 164, 143, 0.25);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* WhatsApp VIP Colors */
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #20BA5A;
}

/* ==========================================================================
   RESET & GLOBAL BASICS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-linen);
  background-image: 
    linear-gradient(to right, rgba(212, 106, 85, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212, 106, 85, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  color: var(--color-text-taupe);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 90px 0;
}

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

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

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
  color: var(--color-text-cocoa);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  color: var(--color-text-taupe);
}

strong {
  font-weight: 600;
  color: var(--color-text-cocoa);
}

.maternal-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--color-accent-light);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.highlight-text {
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(212, 106, 85, 0.15);
  z-index: -1;
}

/* ==========================================================================
   HEADER NAVIGATION (Distraction-Free)
   ========================================================================== */
.header-nav {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border-soft);
  background-color: var(--color-bg-linen);
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-cocoa);
  cursor: pointer;
  user-select: none;
}

.brand-logo svg {
  color: var(--color-accent);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-logo:hover svg {
  transform: rotate(360deg);
}

/* ==========================================================================
   HERO / OPT-IN SECTION
   ========================================================================== */
.hero-section {
  padding: 60px 0 80px 0;
  background: radial-gradient(circle at 50% 50%, #FDFBF9 0%, #FAF0EC 100%);
  position: relative;
  border-bottom: 1px solid var(--color-border-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero-left h1 {
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-taupe);
  margin-bottom: 30px;
  line-height: 1.5;
}

.event-details-box {
  background-color: var(--color-bg-sand);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--color-accent);
  margin-bottom: 24px;
}

.event-details-box p {
  font-size: 0.95rem;
  color: var(--color-text-cocoa);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-details-box p svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Elegant Form Card */
.form-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

@media (max-width: 576px) {
  .form-card {
    padding: 24px;
  }
}

.form-card h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  text-align: center;
}

.form-card p.form-instruction {
  font-size: 0.88rem;
  color: var(--color-text-taupe);
  text-align: center;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-cocoa);
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: var(--color-text-taupe);
  opacity: 0.7;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-input {
  width: 100%;
  padding: 14px 44px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid var(--color-border-soft);
  border-radius: var(--radius-sm);
  color: var(--color-text-cocoa);
  background-color: var(--color-bg-linen);
  outline: none;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus {
  border-color: var(--color-accent);
  background-color: var(--color-bg-white);
  box-shadow: 0 0 0 4px rgba(212, 106, 85, 0.15);
}

/* Symmetrical Label Layout & Indicators */
.label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.label-row label {
  margin-bottom: 0 !important;
}

.valid-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: #2e7d32;
  display: none;
}

.valid-badge.show {
  display: inline;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.valid-checkmark {
  position: absolute;
  right: 16px;
  color: #2e7d32;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.valid-checkmark.show {
  display: flex;
  animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Form validation states */
.form-input.is-valid {
  border-color: #2e7d32;
  background-color: rgba(46, 125, 50, 0.01);
}

.form-input.is-valid:focus {
  border-color: #2e7d32;
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}

.form-input.is-invalid {
  border-color: #d9534f;
  background-color: rgba(217, 83, 79, 0.02);
}

.form-input.is-invalid:focus {
  border-color: #d9534f;
  box-shadow: 0 0 0 4px rgba(217, 83, 79, 0.1);
}

.error-message {
  color: #d9534f;
  font-size: 0.78rem;
  margin-top: 6px;
  display: none;
}

.form-input.is-invalid ~ .error-message {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

/* Multi-Step progress bar styling */
.form-progress {
  margin-bottom: 28px;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-cocoa);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.progress-bar-bg {
  width: 100%;
  background-color: var(--color-bg-sand);
  height: 8px;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  background-color: var(--color-accent);
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Form Steps wrappers */
.form-step-container {
  display: none;
}

.form-step-container.active {
  display: block;
  animation: fadeIn 0.4s ease-out forwards;
}

.btn-back-step {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-taupe);
  cursor: pointer;
  margin-bottom: 16px;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.btn-back-step:hover {
  color: var(--color-accent);
}

.btn-back-step:active {
  transform: scale(0.95);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.form-consent span {
  font-size: 0.78rem;
  color: var(--color-text-taupe);
  line-height: 1.4;
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background-color: var(--color-accent);
  color: var(--color-text-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(212, 106, 85, 0.3);
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-submit:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(212, 106, 85, 0.45);
}

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

/* Pulsing effect for submission button */
.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 106, 85, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(212, 106, 85, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 106, 85, 0);
  }
}

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

.form-security-note svg {
  color: #72b28c;
}

/* ==========================================================================
   WHAT YOU WILL LEARN SECTION
   ========================================================================== */
.learn-section {
  background-color: var(--color-bg-white);
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading h2 {
  max-width: 700px;
  margin: 0 auto 12px auto;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.learn-card {
  background-color: var(--color-bg-linen);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.learn-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.learn-icon-circle {
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.3rem;
  font-weight: 700;
  border: 1px solid rgba(212, 106, 85, 0.1);
}

.learn-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.learn-card p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--color-text-taupe);
}

/* ==========================================================================
   MENTOR SECTION (Authority)
   ========================================================================== */
.mentor-section {
  background-color: var(--color-bg-peach);
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
}

.mentor-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .mentor-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.mentor-image-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.mentor-arch-frame {
  width: 100%;
  max-width: 280px;
  height: 330px;
  border-radius: 140px 140px 0 0;
  overflow: hidden;
  border: 1.5px solid var(--color-accent);
  background: var(--color-accent-light);
  box-shadow: var(--shadow-md);
}

.mentor-arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mentor-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(220, 164, 143, 0.25) 0%, rgba(253, 251, 249, 0) 70%);
  filter: blur(25px);
  z-index: 0;
  pointer-events: none;
}

.mentor-info {
  position: relative;
  z-index: 1;
}

.mentor-info h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.mentor-description p {
  font-size: 0.98rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ==========================================================================
   FAQ SECTION (Acordeão)
   ========================================================================== */
.faq-section {
  background-color: var(--color-bg-linen);
}

.faq-accordion-list {
  max-width: 760px;
  margin: 40px auto 0 auto;
}

.faq-accordion-item {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-normal);
}

.faq-accordion-item:hover {
  border-color: rgba(212, 106, 85, 0.3);
}

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

.faq-chevron {
  font-size: 1.3rem;
  color: var(--color-accent);
  transition: transform var(--transition-normal);
  line-height: 1;
}

.faq-accordion-item.active {
  border-color: var(--color-accent);
}

.faq-accordion-item.active .faq-chevron {
  transform: rotate(45deg);
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.faq-accordion-content {
  padding: 0 24px 20px 24px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-taupe);
  border-top: 1px solid rgba(110, 90, 83, 0.05);
  padding-top: 14px;
}

/* ==========================================================================
   THANK YOU PAGE STYLE (Página de Obrigado)
   ========================================================================== */
.thankyou-section {
  padding: 60px 0 90px 0;
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 50% 50%, #FDFBF9 0%, #FAF0EC 100%);
}

.thankyou-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 576px) {
  .thankyou-card {
    padding: 36px 20px;
  }
}

.thankyou-badge {
  display: inline-block;
  padding: 6px 18px;
  background-color: #e3fcf0;
  border: 1px solid #72b28c;
  color: #277547;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.thankyou-card h1 {
  font-size: 2.1rem;
  margin-bottom: 12px;
  color: var(--color-text-cocoa);
}

.thankyou-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-taupe);
  margin-bottom: 36px;
}

.steps-container {
  text-align: left;
  margin-bottom: 30px;
}

.step-box {
  background-color: var(--color-bg-linen);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 20px;
  transition: border-color var(--transition-fast);
}

.step-box:hover {
  border-color: rgba(212, 106, 85, 0.2);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.step-number {
  background-color: var(--color-accent);
  color: var(--color-text-white);
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.step-header h3 {
  font-size: 1.05rem;
  color: var(--color-text-cocoa);
}

.step-box p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-text-taupe);
  margin-bottom: 16px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background-color: var(--color-whatsapp);
  color: var(--color-text-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp svg {
  fill: var(--color-text-white);
}

/* Calendar options alignment */
.calendar-wrapper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-calendar {
  flex: 1;
  min-width: 130px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.btn-calendar:hover {
  background-color: var(--color-accent);
  color: var(--color-text-white);
}

.btn-calendar svg {
  flex-shrink: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-bottom {
  background-color: var(--color-bg-linen);
  padding: 30px 0;
  border-top: 1px solid var(--color-border-soft);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-text-taupe);
  opacity: 0.8;
}

/* ==========================================================================
   MICRO-ANIMATIONS & PREMIUM TRANSITIONS
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes drawCheck {
  0% { stroke-dashoffset: 80; }
  100% { stroke-dashoffset: 0; }
}

@keyframes scaleUp {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes custom-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 106, 85, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(212, 106, 85, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 106, 85, 0);
  }
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Scroll reveals initial states - elements will be animated via .animate-fade-in-up class */
.learn-card, .faq-accordion-item, .step-box {
  opacity: 0;
  transform: translateY(20px);
  animation-fill-mode: both;
}

/* Animation utilities */
.animate-fade-in-up {
  animation: fadeInUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.animate-scale-up {
  animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.pulse-button {
  animation: custom-pulse 2s infinite;
}

.whatsapp-pulse-button {
  animation: whatsapp-pulse 2s infinite;
}

.animate-check {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: drawCheck 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

/* Active Scales click feedback */
.btn-submit:active,
.btn-whatsapp:active,
.btn-calendar:active,
.faq-accordion-header:active {
  transform: scale(0.98);
}

.btn-submit {
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-whatsapp {
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-calendar {
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

/* Glassmorphism panel */
.glass-panel {
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 106, 85, 0.15);
}

/* Radial Glow backgrounds */
.radial-glow {
  background: radial-gradient(circle, rgba(220, 164, 143, 0.3) 0%, rgba(253, 251, 249, 0) 70%);
  filter: blur(35px);
  pointer-events: none;
}

/* Bounce Animation for icons */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.animate-bounce {
  animation: bounce 1.2s infinite ease-in-out;
}
