/* ============================================================
   main.css — Jireh Aire Acondicionado, S.A.
   Estilos de secciones y layout principal.
   ============================================================ */

/* ── BASE ────────────────────────────────────────────────── */
body{font-family:var(--font-body);color:var(--text);background:var(--surface);overflow-x:hidden}

/* ════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
.navbar{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  height:var(--navbar-h);
  background:rgba(244,251,253,.92);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid transparent;
  transition:all var(--t-base);
}
.navbar.scrolled{
  background:rgba(244,251,253,.97);
  border-bottom-color:var(--border);
  box-shadow:var(--shadow-md);height:60px;
}
.navbar-inner{display:flex;align-items:center;justify-content:space-between;height:100%}

.nav-brand{display:flex;align-items:center;gap:.75rem;flex-shrink:0}
.nav-logo{height:42px;width:auto;transition:height var(--t-base)}
.navbar.scrolled .nav-logo{height:34px}
.nav-brand-name{font-family:var(--font-display);font-weight:800;font-size:1.1rem;color:var(--navy);display:none}
@media(min-width:480px){.nav-brand-name{display:block}}

.nav-links{display:none;align-items:center;gap:2rem}
@media(min-width:900px){.nav-links{display:flex}}
.nav-link{
  font-size:.875rem;font-weight:600;color:var(--muted);
  transition:color var(--t-fast);padding:.25rem 0;position:relative;
}
.nav-link::after{
  content:'';position:absolute;bottom:-2px;left:0;width:0;height:2px;
  background:var(--teal);border-radius:1px;transition:width var(--t-base);
}
.nav-link:hover{color:var(--navy)}.nav-link:hover::after{width:100%}

.nav-actions{display:flex;align-items:center;gap:.75rem}
.nav-cta-ghost{display:none}
@media(min-width:640px){.nav-cta-ghost{display:inline-flex}}

/* Hamburger */
.nav-toggle{display:flex;flex-direction:column;gap:5px;width:28px;padding:4px;background:none;border:none;cursor:pointer}
.nav-toggle span{display:block;height:2px;background:var(--navy);border-radius:2px;transition:all var(--t-base)}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;transform:scaleX(0)}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
@media(min-width:900px){.nav-toggle{display:none}}

/* Mobile menu */
.mobile-menu{
  display:none;position:fixed;top:var(--navbar-h);left:0;right:0;
  background:var(--white);border-bottom:1px solid var(--border);
  box-shadow:var(--shadow-lg);z-index:999;
  padding:1.5rem;flex-direction:column;gap:1rem;
}
.mobile-menu.open{display:flex}
.mob-link{
  font-family:var(--font-display);font-weight:700;font-size:1.1rem;
  color:var(--navy);padding:.75rem 0;border-bottom:1px solid var(--border);
  transition:color var(--t-fast);
}
.mob-link:hover{color:var(--teal)}
.mob-link:last-of-type{border-bottom:none}

/* ════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero{
  position:relative;min-height:100svh;display:flex;align-items:center;
  padding-top:var(--navbar-h);overflow:hidden;
  background:linear-gradient(145deg,var(--navy) 0%,#1A3A6A 48%,var(--teal-dark) 100%);
}
/* Decorative radial glows */
.hero::before{
  content:'';position:absolute;top:-30%;right:-15%;
  width:75%;height:160%;border-radius:50%;pointer-events:none;
  background:radial-gradient(ellipse,rgba(41,169,190,.18) 0%,transparent 70%);
}
.hero::after{
  content:'';position:absolute;bottom:-20%;left:-10%;
  width:60%;height:120%;border-radius:50%;pointer-events:none;
  background:radial-gradient(ellipse,rgba(114,196,232,.12) 0%,transparent 70%);
}
/* Dot grid texture */
.hero-dots{
  position:absolute;inset:0;z-index:0;pointer-events:none;
  background-image:radial-gradient(circle,rgba(255,255,255,.055) 1px,transparent 1px);
  background-size:38px 38px;
}
.hero-img-bg{position:absolute;inset:0;z-index:0}
.hero-img-bg img{width:100%;height:100%;object-fit:cover;opacity:.1}

.hero-inner{position:relative;z-index:1;width:100%;padding:4rem 0}
.hero-grid{display:grid;grid-template-columns:1fr;gap:3rem;align-items:center}
@media(min-width:1024px){.hero-grid{grid-template-columns:1fr 430px;gap:4rem}}

/* Hero copy */
.hero-content{color:var(--white)}
.hero-badge{
  display:inline-flex;align-items:center;gap:.5rem;
  background:rgba(41,169,190,.18);border:1px solid rgba(41,169,190,.38);
  color:var(--teal-light);padding:.375rem 1rem;border-radius:var(--r-full);
  font-size:.7rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  margin-bottom:1.5rem;
}
.hero-badge svg{width:13px;height:13px;flex-shrink:0}

.hero-title{
  font-family:var(--font-display);font-weight:900;
  font-size:clamp(2rem,5.5vw,3.25rem);
  line-height:1.08;letter-spacing:-.025em;color:var(--white);
  margin-bottom:1.5rem;
}
.hero-title .hl{color:var(--teal-light)}
.hero-desc{font-size:1.1rem;color:rgba(255,255,255,.82);line-height:1.75;max-width:520px;margin-bottom:2.5rem}
.hero-actions{display:flex;flex-wrap:wrap;gap:1rem;margin-bottom:3rem}

.hero-stats{display:flex;flex-wrap:wrap;gap:2rem}
.stat-val{
  font-family:var(--font-display);font-weight:900;
  font-size:clamp(1.75rem,3vw,2.25rem);color:var(--white);line-height:1;display:block;
}
.stat-lbl{font-size:.7rem;color:rgba(255,255,255,.58);font-weight:500;letter-spacing:.05em;margin-top:.2rem;display:block}

/* Hero form card */
.hero-card{background:var(--white);border-radius:var(--r-xl);box-shadow:var(--shadow-xl);overflow:hidden}
.hero-card-head{
  background:linear-gradient(135deg,var(--navy),var(--teal-dark));
  padding:1.5rem 2rem;
}
.hero-card-title{font-family:var(--font-display);font-weight:800;font-size:1.25rem;color:var(--white);margin-bottom:.2rem}
.hero-card-sub{font-size:.875rem;color:rgba(255,255,255,.72)}
.hero-card-body{padding:2rem}
.hero-card-body .form-group+.form-group{margin-top:1.25rem}

.hero-submit{
  width:100%;margin-top:1.5rem;padding:1rem;
  background:var(--teal);color:var(--white);
  font-family:var(--font-display);font-weight:800;font-size:1rem;
  border:none;border-radius:var(--r-md);cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:.5rem;
  box-shadow:var(--shadow-md);transition:all var(--t-base);
}
.hero-submit:hover:not(:disabled){background:var(--teal-dark);transform:translateY(-2px);box-shadow:var(--shadow-lg)}
.hero-submit:disabled{opacity:.72;cursor:not-allowed;transform:none}
.hero-form-note{
  text-align:center;font-size:.72rem;color:var(--muted);
  margin-top:1rem;display:flex;align-items:center;justify-content:center;gap:.35rem;
}

/* Form success overlay */
.form-success{display:none;flex-direction:column;align-items:center;text-align:center;padding:3rem 2rem;min-height:260px}
.form-success.show{display:flex}
.success-icon{
  width:60px;height:60px;border-radius:50%;
  background:var(--teal-xlight);color:var(--teal-dark);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.5rem;
}
.success-title{font-family:var(--font-display);font-weight:800;font-size:1.2rem;color:var(--navy);margin-bottom:.75rem}
.success-text{font-size:.875rem;color:var(--muted);line-height:1.65}

/* ════════════════════════════════════════════════════════════
   VALUE PROPS
══════════════════════════════════════════════════════════════ */
.section-props{background:var(--white);padding:5rem 0;border-bottom:1px solid var(--border)}
.props-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:640px){.props-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.props-grid{grid-template-columns:repeat(3,1fr)}}

.prop-card{
  padding:2rem;border-radius:var(--r-lg);border:1px solid var(--border);
  background:var(--surface);display:flex;flex-direction:column;gap:1rem;
  transition:all var(--t-base);
}
.prop-card:hover{border-color:var(--teal-light);box-shadow:var(--shadow-md);transform:translateY(-3px)}
.prop-title{font-family:var(--font-display);font-weight:700;font-size:1rem;color:var(--navy)}
.prop-desc{font-size:.875rem;color:var(--muted);line-height:1.65}

/* ════════════════════════════════════════════════════════════
   SERVICIOS
══════════════════════════════════════════════════════════════ */
.section-services{padding:6rem 0;background:var(--surface)}
.services-grid{display:grid;grid-template-columns:1fr;gap:1.75rem}
@media(min-width:768px){.services-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.services-grid{grid-template-columns:repeat(3,1fr)}}

.svc-card{
  background:var(--white);border-radius:var(--r-xl);border:1px solid var(--border);
  overflow:hidden;display:flex;flex-direction:column;
  box-shadow:var(--shadow-sm);transition:all var(--t-base);
}
.svc-card:hover{box-shadow:var(--shadow-xl);transform:translateY(-5px);border-color:var(--teal-light)}
.svc-card.featured{border-color:var(--teal);box-shadow:0 0 0 2px var(--teal),var(--shadow-lg)}

.svc-img{
  position:relative;height:195px;overflow:hidden;
  background:linear-gradient(135deg,var(--navy),var(--teal-dark));flex-shrink:0;
}
.svc-img img{width:100%;height:100%;object-fit:cover;transition:transform var(--t-slow)}
.svc-card:hover .svc-img img{transform:scale(1.06)}
.svc-img-placeholder{display:flex;align-items:center;justify-content:center;height:100%}
.svc-img-placeholder svg{width:72px;height:72px;opacity:.22;color:var(--white)}
.svc-img-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(29,67,116,.5) 0%,transparent 55%)}
.svc-img-badge{position:absolute;bottom:.875rem;left:.875rem;z-index:2}

.svc-body{padding:2rem;flex:1;display:flex;flex-direction:column}
.svc-title{font-family:var(--font-display);font-weight:800;font-size:1.2rem;color:var(--navy);margin-bottom:.75rem}
.svc-desc{font-size:.875rem;color:var(--muted);line-height:1.7;margin-bottom:1.5rem;flex:1}
.svc-list{display:flex;flex-direction:column;gap:.5rem;margin-bottom:1.5rem}
.svc-item{display:flex;align-items:center;gap:.5rem;font-size:.875rem;color:var(--text)}
.svc-check{width:17px;height:17px;color:var(--teal);flex-shrink:0}
.svc-promo{
  background:var(--teal-xlight);border:1px solid var(--teal-light);
  border-radius:var(--r-md);padding:.75rem 1rem;
  font-size:.78rem;font-weight:700;color:var(--teal-dark);
}

/* ════════════════════════════════════════════════════════════
   PROCESO
══════════════════════════════════════════════════════════════ */
.section-process{padding:6rem 0;background:var(--surface-alt)}
.process-steps{display:grid;grid-template-columns:1fr;gap:2rem;position:relative}
@media(min-width:768px){.process-steps{grid-template-columns:repeat(4,1fr)}}

.step{display:flex;flex-direction:column;align-items:center;text-align:center;gap:1rem;position:relative}
@media(min-width:768px){
  .step:not(:last-child)::after{
    content:'';position:absolute;top:27px;left:calc(50% + 30px);
    width:calc(100% - 60px);height:2px;
    background:linear-gradient(90deg,var(--teal-light),var(--border));
  }
}
.step-num{
  width:54px;height:54px;border-radius:50%;
  background:linear-gradient(135deg,var(--navy),var(--teal-dark));
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-weight:900;font-size:1.1rem;color:var(--white);
  box-shadow:var(--shadow-md);z-index:1;flex-shrink:0;
}
.step-title{font-family:var(--font-display);font-weight:700;font-size:.95rem;color:var(--navy)}
.step-desc{font-size:.85rem;color:var(--muted);line-height:1.65}

/* ════════════════════════════════════════════════════════════
   TESTIMONIOS / CONFIANZA
══════════════════════════════════════════════════════════════ */
.section-trust{padding:6rem 0;background:var(--white)}
.trust-label{
  text-align:center;font-size:.7rem;font-weight:700;
  letter-spacing:.12em;text-transform:uppercase;color:var(--muted);margin-bottom:2rem;
}
.trust-logos{
  display:flex;flex-wrap:wrap;align-items:center;justify-content:center;
  gap:1.5rem 3rem;opacity:.45;filter:grayscale(1);
  transition:filter var(--t-slow),opacity var(--t-slow);margin-bottom:5rem;
}
.trust-logos:hover{opacity:.7;filter:grayscale(0)}
.trust-logo{
  font-family:var(--font-display);font-weight:800;font-size:.8rem;
  color:var(--navy);padding:.4rem 1rem;border:1.5px solid var(--border);border-radius:var(--r-md);
}

.testi-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:768px){.testi-grid{grid-template-columns:repeat(2,1fr)}}

.testi-card{
  background:var(--surface);border:1px solid var(--border);border-radius:var(--r-xl);
  padding:2rem;display:flex;flex-direction:column;gap:1.25rem;
  transition:all var(--t-base);
}
.testi-card:hover{border-color:var(--teal-light);box-shadow:var(--shadow-md)}
.testi-card.featured{
  background:linear-gradient(145deg,var(--navy),#1A3A6A);
  border-color:transparent;color:var(--white);
}
.testi-stars{display:flex;gap:.25rem;color:#F5A623}
.testi-star{width:15px;height:15px;fill:currentColor}
.testi-quote{font-size:.875rem;line-height:1.8;color:var(--text);font-style:italic}
.testi-card.featured .testi-quote{color:rgba(255,255,255,.85)}
.testi-author{display:flex;align-items:center;gap:.75rem;margin-top:auto}
.testi-avatar{
  width:42px;height:42px;border-radius:50%;
  background:linear-gradient(135deg,var(--teal-light),var(--teal));
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-weight:800;font-size:.9rem;color:var(--white);flex-shrink:0;
}
.testi-card.featured .testi-avatar{background:rgba(255,255,255,.18)}
.testi-name{font-family:var(--font-display);font-weight:700;font-size:.875rem;color:var(--navy);line-height:1.2}
.testi-card.featured .testi-name{color:var(--white)}
.testi-role{font-size:.72rem;color:var(--muted)}
.testi-card.featured .testi-role{color:rgba(255,255,255,.6)}

/* ════════════════════════════════════════════════════════════
   CONTACTO (sección secundaria)
══════════════════════════════════════════════════════════════ */
.section-contact{padding:6rem 0;background:var(--surface)}
.contact-grid{
  display:grid;grid-template-columns:1fr;gap:3rem;
  max-width:860px;margin:0 auto;
}
@media(min-width:768px){.contact-grid{grid-template-columns:1fr 1.6fr}}

.contact-info{display:flex;flex-direction:column;gap:1.5rem}
.contact-item{display:flex;align-items:flex-start;gap:.875rem}
.contact-item-icon{width:20px;height:20px;color:var(--teal);flex-shrink:0;margin-top:2px}
.contact-item-label{font-size:.75rem;font-weight:600;color:var(--muted);letter-spacing:.03em;margin-bottom:.15rem}
.contact-item-value{font-size:.9rem;color:var(--text)}
.contact-item-value a{color:var(--navy);font-weight:600;transition:color var(--t-fast)}
.contact-item-value a:hover{color:var(--teal)}

.contact-form-card{
  background:var(--white);border:1px solid var(--border);
  border-radius:var(--r-xl);padding:2.5rem;box-shadow:var(--shadow-sm);
}
.contact-form-card .form-group+.form-group{margin-top:1.25rem}
.contact-submit{
  width:100%;margin-top:1.5rem;padding:.9rem;
  background:var(--navy);color:var(--white);
  font-family:var(--font-display);font-weight:700;font-size:.9rem;
  border:none;border-radius:var(--r-md);cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:.5rem;
  transition:all var(--t-base);
}
.contact-submit:hover:not(:disabled){background:var(--navy-dark);transform:translateY(-2px);box-shadow:var(--shadow-md)}
.contact-submit:disabled{opacity:.72;cursor:not-allowed;transform:none}

/* ════════════════════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════════════════════ */
.section-cta{padding:6rem 0;background:var(--white)}
.cta-box{
  background:linear-gradient(135deg,var(--navy) 0%,#1A3A6A 50%,var(--teal-dark) 100%);
  border-radius:var(--r-xl);padding:5rem 2rem;text-align:center;
  position:relative;overflow:hidden;box-shadow:var(--shadow-xl);
}
.cta-box::before{
  content:'';position:absolute;top:-40%;right:-10%;width:55%;height:200%;
  border-radius:50%;pointer-events:none;
  background:radial-gradient(ellipse,rgba(41,169,190,.2) 0%,transparent 70%);
}
.cta-box::after{
  content:'';position:absolute;bottom:-30%;left:-8%;width:45%;height:150%;
  border-radius:50%;pointer-events:none;
  background:radial-gradient(ellipse,rgba(114,196,232,.14) 0%,transparent 70%);
}
.cta-inner{position:relative;z-index:1}
.cta-eyebrow{display:inline-block;font-size:.7rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--teal-light);margin-bottom:1rem}
.cta-title{font-family:var(--font-display);font-weight:900;color:var(--white);font-size:clamp(1.75rem,4vw,2.75rem);line-height:1.1;margin-bottom:1.25rem}
.cta-title .hl{color:var(--teal-light)}
.cta-desc{font-size:1.05rem;color:rgba(255,255,255,.78);max-width:560px;margin:0 auto 2.5rem;line-height:1.75}
.cta-actions{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center}

/* ════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer{background:var(--navy);color:rgba(255,255,255,.72);padding:4rem 0 2rem}
.footer-grid{display:grid;grid-template-columns:1fr;gap:2.5rem;margin-bottom:3rem}
@media(min-width:640px){.footer-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.footer-grid{grid-template-columns:2fr 1fr 1fr 1.5fr}}

.footer-brand{display:flex;flex-direction:column;gap:1.25rem}
.footer-logo-row{display:flex;align-items:center;gap:.75rem}
.footer-logo{height:44px;width:auto;filter:brightness(0) invert(1)}
.footer-brand-name{font-family:var(--font-display);font-weight:800;font-size:1.2rem;color:var(--white)}
.footer-tagline{font-size:.875rem;line-height:1.7;color:rgba(255,255,255,.58);max-width:270px}

.footer-socials{display:flex;gap:.75rem;margin-top:.25rem}
.footer-social{
  width:38px;height:38px;border-radius:50%;border:1px solid rgba(255,255,255,.18);
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.65);transition:all var(--t-fast);
}
.footer-social:hover{border-color:var(--teal-light);color:var(--teal-light);background:rgba(41,169,190,.1)}

.footer-col-title{
  font-family:var(--font-display);font-weight:700;font-size:.75rem;
  color:var(--white);letter-spacing:.08em;text-transform:uppercase;margin-bottom:1.25rem;
}
.footer-links{display:flex;flex-direction:column;gap:.75rem}
.footer-link{font-size:.875rem;color:rgba(255,255,255,.58);transition:color var(--t-fast)}
.footer-link:hover{color:var(--teal-light)}

.footer-contact-row{display:flex;align-items:flex-start;gap:.75rem;margin-bottom:.875rem}
.footer-contact-icon{width:17px;height:17px;color:var(--teal-light);flex-shrink:0;margin-top:2px}
.footer-contact-text{font-size:.85rem;color:rgba(255,255,255,.6)}
.footer-contact-text a{color:rgba(255,255,255,.75);transition:color var(--t-fast)}
.footer-contact-text a:hover{color:var(--teal-light)}

.footer-bottom{
  padding-top:2rem;border-top:1px solid rgba(255,255,255,.1);
  display:flex;flex-direction:column;gap:1rem;align-items:center;text-align:center;
}
@media(min-width:768px){.footer-bottom{flex-direction:row;justify-content:space-between;text-align:left}}
.footer-copy{font-size:.75rem;color:rgba(255,255,255,.38)}
.footer-legal{display:flex;gap:1.5rem;flex-wrap:wrap;justify-content:center}
.footer-legal-link{font-size:.75rem;color:rgba(255,255,255,.38);transition:color var(--t-fast)}
.footer-legal-link:hover{color:var(--teal-light)}

/* ════════════════════════════════════════════════════════════
   WHATSAPP FAB
══════════════════════════════════════════════════════════════ */
.wa-fab{
  position:fixed;bottom:1.75rem;right:1.75rem;z-index:9000;
  display:flex;align-items:center;gap:.75rem;text-decoration:none;
}
.wa-fab-btn{
  width:58px;height:58px;border-radius:50%;background:var(--wa-green);
  box-shadow:0 4px 20px rgba(37,211,102,.44);
  display:flex;align-items:center;justify-content:center;
  transition:all var(--t-base);position:relative;flex-shrink:0;
}
.wa-fab-btn:hover{background:var(--wa-green-dark);transform:scale(1.1);box-shadow:0 6px 28px rgba(37,211,102,.55)}
.wa-fab-btn svg{width:30px;height:30px;fill:var(--white)}
.wa-fab-btn::before{
  content:'';position:absolute;inset:-4px;border-radius:50%;
  border:2px solid rgba(37,211,102,.46);
  animation:wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse{0%{opacity:1;transform:scale(1)}70%{opacity:0;transform:scale(1.35)}100%{opacity:0;transform:scale(1.35)}}

.wa-fab-label{
  background:var(--white);color:var(--text);padding:.5rem 1rem;
  border-radius:var(--r-md);font-size:.875rem;font-weight:600;
  box-shadow:var(--shadow-md);white-space:nowrap;
  opacity:0;transform:translateX(8px);
  transition:opacity var(--t-base),transform var(--t-base);pointer-events:none;
}
.wa-fab:hover .wa-fab-label,.wa-fab:focus .wa-fab-label{opacity:1;transform:translateX(0)}
@media(max-width:640px){
  .wa-fab{bottom:1.25rem;right:1.25rem}
  .wa-fab-btn{width:52px;height:52px}
  .wa-fab-label{display:none}
}

/* ════════════════════════════════════════════════════════════
   TOASTS
══════════════════════════════════════════════════════════════ */
.toast-container{
  position:fixed;top:calc(var(--navbar-h) + 1rem);right:1rem;
  z-index:9999;display:flex;flex-direction:column;gap:.75rem;pointer-events:none;
}
.toast{
  background:var(--white);border-radius:var(--r-md);box-shadow:var(--shadow-xl);
  padding:1rem 1.25rem;display:flex;align-items:center;gap:.75rem;
  font-size:.875rem;font-weight:600;color:var(--text);
  border-left:4px solid var(--teal);max-width:320px;pointer-events:auto;
  animation:toast-in .3s ease,toast-out .3s ease 3.7s forwards;
}
@keyframes toast-in{from{opacity:0;transform:translateX(40px)}to{opacity:1;transform:none}}
@keyframes toast-out{from{opacity:1;transform:none}to{opacity:0;transform:translateX(40px)}}
