/* ============================================
   AISLAMIENTO.GRUPO-IBERENERGY.COM
   B2C Landing Site — Aislamiento de Buhardillas GRATIS via CAE
   ============================================ */

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #0a1628;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ============================================
   THEME COLORS
   ============================================ */
:root {
  --green: #059669;
  --green-dark: #047857;
  --green-light: #d1fae5;
  --green-glow: #10b981;
  --gold: #f59e0b;
  --gold-light: #fde68a;
  --gold-dark: #92400e;
  --navy: #0a1628;
  --navy-light: #1e293b;
  --gray-50: #FAFBFC;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --red: #ef4444;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.font-display { font-family: 'Sora', sans-serif; letter-spacing: -0.025em; }
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; letter-spacing: -0.025em; color: var(--navy); font-weight: 800; line-height: 1.1; }
h1 { font-size: clamp(32px, 6vw, 60px); }
h2 { font-size: clamp(24px, 4vw, 38px); margin-bottom: 16px; }
h3 { font-size: clamp(18px, 3vw, 22px); margin-bottom: 8px; }
p { color: var(--gray-700); }

/* ============================================
   LAYOUT
   ============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 20px; }
section { padding: 64px 0; }
@media (max-width: 768px) { section { padding: 48px 0; } }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  padding: 12px 0;
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
}
.logo svg { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.logo-text .accent {
  background: linear-gradient(135deg, var(--green), var(--green-glow));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-tag {
  display: block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-top: -2px;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green), var(--green-glow));
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s;
}
.header-phone:hover { transform: translateY(-1px); }
@media (max-width: 480px) {
  .header-phone span.label { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 64px 0 80px;
  background:
    radial-gradient(at 80% 20%, rgba(16,185,129,0.15), transparent 60%),
    radial-gradient(at 20% 80%, rgba(245,158,11,0.10), transparent 60%),
    linear-gradient(180deg, #FAFBFC 0%, #fff 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; } }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--gold-light), #fbbf24);
  color: var(--gold-dark);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold-dark);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--green), var(--green-glow));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 .gold {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--gray-700);
  margin: 16px 0 28px;
  line-height: 1.6;
}
.hero-subtitle strong { color: var(--navy); }
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 15px;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-glow));
  color: white;
  box-shadow: 0 10px 25px -8px rgba(5,150,105,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(5,150,105,0.5); }
.btn-secondary {
  background: white;
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); }
.btn-whatsapp {
  background: #25D366;
  color: white;
}
.btn-whatsapp:hover { background: #20BD5A; }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-block { width: 100%; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--gray-500);
}
.hero-trust-item { display: flex; align-items: center; gap: 6px; }
.hero-trust-item strong { color: var(--navy); }
.star { color: var(--gold); }

/* Hero card */
.hero-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
  border: 1px solid var(--gray-100);
  position: relative;
}
.hero-card-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 8px 16px rgba(245,158,11,0.3);
}
.cost-comparison { display: grid; grid-template-columns: 1fr 24px 1fr; gap: 12px; align-items: center; margin: 20px 0; }
.cost-card { padding: 16px; border-radius: 14px; text-align: center; }
.cost-card.before { background: #fef2f2; border: 1px solid #fecaca; }
.cost-card.after { background: var(--green-light); border: 1px solid #6ee7b7; }
.cost-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.cost-label.red { color: var(--red); }
.cost-label.green { color: var(--green-dark); }
.cost-amount { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 800; color: var(--navy); }
.cost-detail { font-size: 11px; color: var(--gray-500); margin-top: 4px; }
.cost-arrow { color: var(--gray-400); text-align: center; font-size: 20px; }
.savings-highlight {
  text-align: center;
  background: linear-gradient(135deg, var(--green-light), #a7f3d0);
  padding: 14px;
  border-radius: 12px;
  margin-top: 16px;
}
.savings-highlight-label { font-size: 12px; color: var(--green-dark); font-weight: 600; }
.savings-highlight-amount { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800; color: var(--green-dark); margin-top: 2px; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 24px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-600);
}
.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--green-glow));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.trust-text { font-weight: 600; color: var(--navy); }
.trust-text small { display: block; font-weight: 500; color: var(--gray-500); font-size: 11px; }

/* ============================================
   ELIGIBILITY CHECKER
   ============================================ */
.eligibility {
  background: linear-gradient(180deg, #fff 0%, var(--gray-50) 100%);
}
.eligibility-card {
  background: white;
  border-radius: 24px;
  padding: 36px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.06);
}
.eligibility-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}
.eligibility-progress-step {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--gray-100);
  transition: background 0.3s;
}
.eligibility-progress-step.active { background: var(--green); }
.eligibility-question { display: none; }
.eligibility-question.active { display: block; }
.eligibility-question h3 { font-size: 22px; margin-bottom: 8px; }
.eligibility-question p.help { color: var(--gray-500); font-size: 14px; margin-bottom: 20px; }
.eligibility-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .eligibility-options { grid-template-columns: 1fr; } }
.eligibility-option {
  background: white;
  border: 2px solid var(--gray-200);
  padding: 18px 20px;
  border-radius: 14px;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.2s;
  cursor: pointer;
  font-size: 15px;
}
.eligibility-option:hover { border-color: var(--green); background: var(--green-light); }
.eligibility-option.selected { border-color: var(--green); background: var(--green-light); color: var(--green-dark); }
.eligibility-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-size: 16px;
  transition: border-color 0.2s;
}
.eligibility-input:focus { outline: none; border-color: var(--green); }
.eligibility-nav { display: flex; justify-content: space-between; margin-top: 24px; gap: 12px; }
.eligibility-result { text-align: center; padding: 32px 16px; }
.eligibility-result.success { color: var(--green-dark); }
.eligibility-result.fail { color: var(--gray-600); }
.eligibility-result-icon { font-size: 64px; margin-bottom: 12px; }
.eligibility-result h3 { font-size: 26px; margin-bottom: 8px; }
.eligibility-result p { margin-bottom: 20px; font-size: 16px; }

/* ============================================
   LEAD FORM (after eligibility OK)
   ============================================ */
.lead-form {
  background: linear-gradient(135deg, var(--green-light) 0%, #ecfdf5 100%);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #6ee7b7;
  margin-top: 16px;
  text-align: left;
}
.lead-form h4 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 6px;
}
.lead-form-sub {
  text-align: center;
  color: var(--gray-600);
  font-size: 13px;
  margin-bottom: 20px;
}
.lead-form-row { margin-bottom: 14px; }
.lead-form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--navy);
}
.lead-form input { width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200); border-radius: 10px; font-size: 15px; background: white; }
.lead-form input:focus { outline: none; border-color: var(--green); }
.lead-form-rgpd {
  display: flex;
  align-items: start;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.5;
}
.lead-form-rgpd input { width: auto; margin-top: 2px; flex-shrink: 0; }
.lead-form-rgpd a { color: var(--green); text-decoration: underline; }

/* ============================================
   SECTIONS GENERIC
   ============================================ */
.section-head { text-align: center; max-width: 700px; margin: 0 auto 40px; }
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 12px;
}
.section-head p { font-size: 17px; color: var(--gray-600); margin-top: 12px; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .steps { grid-template-columns: 1fr; } }
.step {
  text-align: center;
  padding: 28px 20px;
}
.step-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--green);
  color: var(--green);
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--green), var(--green-glow));
  border-radius: 50%;
  bottom: -8px;
  right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
}
.step:nth-child(1) .step-num::after { content: '📞'; }
.step:nth-child(2) .step-num::after { content: '🏠'; }
.step:nth-child(3) .step-num::after { content: '✅'; }

/* ============================================
   MATERIALS
   ============================================ */
.materials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.material-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  padding: 24px;
  transition: all 0.3s;
}
.material-card:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: 0 14px 30px -10px rgba(5,150,105,0.15); }
.material-icon { font-size: 36px; margin-bottom: 12px; }
.material-card h3 { font-size: 18px; }
.material-card p { font-size: 14px; color: var(--gray-600); margin: 8px 0 14px; line-height: 1.6; }
.material-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.material-spec {
  padding: 4px 10px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testimonial {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  padding: 24px;
  position: relative;
}
.testimonial-stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; }
.testimonial-text { color: var(--gray-700); font-style: italic; margin-bottom: 16px; line-height: 1.7; font-size: 14px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--gray-100); }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-glow));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Sora', sans-serif;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.testimonial-loc { font-size: 12px; color: var(--gray-500); }
.testimonial-savings {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--green); }
.faq-question {
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}
.faq-question .icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 20px 18px; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--green-dark) 70%, var(--green) 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.3), transparent 70%);
  border-radius: 50%;
}
.final-cta .container { position: relative; z-index: 2; text-align: center; }
.final-cta h2 { color: white; }
.final-cta p { color: rgba(255,255,255,0.85); font-size: 18px; margin: 16px 0 28px; }
.final-cta .btn-primary { background: white; color: var(--green); box-shadow: 0 14px 30px -8px rgba(0,0,0,0.3); }
.final-cta .btn-primary:hover { background: var(--gray-100); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  color: var(--gray-400);
  padding: 40px 0 24px;
  font-size: 13px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
.footer-col h4 {
  color: var(--green-light);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--gray-400); transition: color 0.2s; }
.footer-col a:hover { color: var(--green-light); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}
.footer-bottom a { margin-left: 16px; }

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--gray-200);
  padding: 12px 16px;
  display: none;
  gap: 8px;
  z-index: 50;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
}
.sticky-cta .btn { flex: 1; padding: 12px; font-size: 14px; }
@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(37,211,102,0.3);
  z-index: 50;
  transition: transform 0.2s;
  animation: wa-pulse 2s infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); }
.whatsapp-fab svg { width: 28px; height: 28px; color: white; }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 768px) {
  .whatsapp-fab { bottom: 84px; }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 1px solid var(--gray-200);
  padding: 20px;
  z-index: 200;
  display: none;
}
.cookie-banner.visible { display: block; }
@media (max-width: 768px) {
  .cookie-banner { bottom: 80px; }
}
.cookie-banner h4 { font-size: 16px; margin-bottom: 4px; }
.cookie-banner p { font-size: 13px; color: var(--gray-600); margin-bottom: 16px; }
.cookie-banner-buttons { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.cookie-banner-buttons .btn { padding: 10px 18px; font-size: 13px; }
.cookie-banner-buttons .btn-text {
  background: none;
  color: var(--gray-600);
  text-decoration: underline;
  padding: 10px 12px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.thank-you-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease-out backwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
