:root{
  --bg: #07130f;
  --bg2:#050f0b;

  --surface: rgba(255,255,255,0.06);
  --surface-2: rgba(255,255,255,0.09);
  --stroke: rgba(255,255,255,0.12);

  --text: rgba(255,255,255,0.92);
  --text-2: rgba(255,255,255,0.84);
  --muted: rgba(255,255,255,0.66);

  --primary: #34d399;
  --primary-2: #22c55e;
  --primary-3: #86efac;

  --shadow: 0 22px 70px rgba(0,0,0,0.55);
  --shadow-soft: 0 14px 36px rgba(0,0,0,0.35);

  --r-xl: 22px;
  --r-lg: 18px;
  --r-md: 14px;

  --container: 1120px;

  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  --font-display: "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui;

  --h1: clamp(2.2rem, 3.6vw, 3.75rem);
  --h2: clamp(1.8rem, 2.8vw, 3.05rem);
  --h3: 1.20rem;
  --p: 1.02rem;
  --lead: 1.18rem;

  --lh-tight: 1.06;
  --lh: 1.58;
  --lh-loose: 1.74;

  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-soft: cubic-bezier(.22,.61,.36,1);

  /* será setado via JS */
  --headerH: 76px;

  scroll-behavior: smooth;
}

*{ box-sizing: border-box; }
html, body { height: 100%; }

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  line-height: var(--lh);
  letter-spacing: -0.012em;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  background:
    radial-gradient(1200px 640px at 12% 0%, rgba(52,211,153,0.22), transparent 60%),
    radial-gradient(980px 560px at 92% 18%, rgba(34,197,94,0.16), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

/* Background breathing */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events:none;
  background:
    radial-gradient(980px 560px at 18% 12%, rgba(52,211,153,0.15), transparent 60%),
    radial-gradient(980px 560px at 86% 18%, rgba(34,197,94,0.11), transparent 62%);
  filter: blur(10px);
  opacity: 0.9;
  animation: breatheBg 10s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes breatheBg{
  0%   { transform: scale(1);    opacity: 0.78; }
  50%  { transform: scale(1.03); opacity: 0.94; }
  100% { transform: scale(1);    opacity: 0.78; }
}

/* Grid dots overlay */
.bg-gradient-overlay{
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.10) 1px, transparent 1.4px) 0 0 / 26px 26px;
  opacity: 0.18;
}

@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }
  body::before { animation: none !important; }
  * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}

:focus-visible{
  outline: 3px solid rgba(52,211,153,0.28);
  outline-offset: 3px;
  border-radius: 12px;
}

/* Layout */
.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* Typography */
h1,h2,h3{
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  margin: 0 0 12px;
}
h1{ font-size: var(--h1); line-height: var(--lh-tight); }
h2{ font-size: var(--h2); line-height: 1.12; }
h3{ font-size: var(--h3); line-height: 1.25; letter-spacing: -0.02em; }
p{ margin: 0 0 12px; font-size: var(--p); color: var(--text-2); }
.lead{ font-size: var(--lead); line-height: var(--lh-loose); color: var(--muted); }
.muted{ color: var(--muted); }
strong{ color: rgba(255,255,255,0.92); font-weight: 750; }
.section-head{ max-width: 70ch; }

.accent-title{
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.accent-title::after{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.18rem;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(52,211,153,0.20), rgba(34,197,94,0.10));
  opacity: 0.9;
  z-index: -1;
  transform: translateY(0.42rem);
}

/* Premium badge */
.badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(52,211,153,0.18);
  color: rgba(255,255,255,0.82);
  font-weight: 650;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}
.badge-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 6px rgba(52,211,153,0.12);
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(7,19,15,0.62);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.header-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-logo{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 6px;
}
.brand-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.brand-name{
  font-weight: 800;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,0.94);
  font-size: 1.06rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hamburger */
.icon-btn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.icon-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(52,211,153,0.22);
}
.icon-btn:active{ transform: translateY(0) scale(0.99); }

/* Menu dropdown */
.mobileNav{
  overflow: hidden;
  max-height: 0px;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 420ms var(--ease-out), opacity 260ms var(--ease-out), transform 260ms var(--ease-out);
}
.mobileNav.open{
  position: fixed;
  left: 0;
  right: 0;
  top: var(--headerH);
  z-index: 79;

  max-height: calc(100vh - var(--headerH) - 14px);
  opacity: 1;
  transform: translateY(0);
  overflow: auto;

  padding: 0 16px 14px;
}
.mobileNav-inner{
  width: min(var(--container), calc(100% - 0px));
  margin: 0 auto;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(52,211,153,0.18);
  background: rgba(7,19,15,0.56);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
  display: grid;
  gap: 10px;
}
.nav-link{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.nav-link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(52,211,153,0.22);
}
.nav-link.is-active{
  border-color: rgba(52,211,153,0.38);
  background: rgba(52,211,153,0.10);
}

/* Sections */
section{ padding: 88px 0; }
.brand-panel{ background: transparent; }
.section-gradient{ background: transparent; }
.section-sep{
  height: 1px;
  width: min(var(--container), 92vw);
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(52,211,153,0.18), transparent);
  opacity: 0.75;
}

/* Hero */
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}
.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.hero-meta{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
  max-width: 620px;
}
.meta-item{
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(52,211,153,0.14);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}
.meta-kicker{
  display: block;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.62);
  font-weight: 650;
  letter-spacing: -0.01em;
}
.meta-value{
  display: block;
  margin-top: 3px;
  font-weight: 750;
  color: rgba(255,255,255,0.88);
  letter-spacing: -0.015em;
}

.image-panel{
  position: relative;
  border-radius: var(--r-xl);
  padding: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateZ(0);
}
.image-panel img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--r-xl) - 8px);
}
.image-panel-glow{
  position: absolute;
  inset: -80px;
  background: radial-gradient(520px 260px at 70% 30%, rgba(52,211,153,0.18), transparent 60%);
  filter: blur(8px);
  opacity: 0.85;
  pointer-events: none;
}

/* Buttons */
.btn-primary, .btn-ghost{
  border-radius: 999px;
  padding: 0.98rem 1.25rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.012em;
  border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out), filter 180ms var(--ease-out);
  user-select: none;
  text-decoration: none;
}
.btn-primary{
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  color: rgba(6,15,11,0.92);
  box-shadow: 0 18px 44px rgba(52,211,153,0.16);
}
.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 58px rgba(52,211,153,0.22);
  filter: saturate(1.05);
}
.btn-primary:active{ transform: translateY(0) scale(0.99); }

.btn-ghost{
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
}
.btn-ghost:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(52,211,153,0.22);
}

/* Cards */
.grid-3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.card{
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(52,211,153,0.20);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out);
}
.card h3{ color: rgba(255,255,255,0.96); margin-bottom: 8px; }
.card p{ color: rgba(255,255,255,0.74); margin: 0; }
.card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(52,211,153,0.40);
  background: rgba(255,255,255,0.055);
}
.card-footer{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.chip{
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.18);
  color: rgba(255,255,255,0.82);
}

/* Icons blocks */
.icon-wrap{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 14px;
  background: rgba(52,211,153,0.10);
  border: 1px solid rgba(52,211,153,0.28);
  box-shadow: 0 16px 40px rgba(0,0,0,0.20);
}
.icon-wrap svg{
  width: 26px;
  height: 26px;
  color: var(--primary);
}

/* ABOUT */
.about-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}
.about-copy{
  border-radius: var(--r-xl);
  padding: 18px;
  border: 1px solid rgba(52,211,153,0.18);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow-soft);
}
.about-points{
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.about-point{
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(52,211,153,0.16);
  background: rgba(7,19,15,0.55);
}
.about-ico{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(52,211,153,0.28);
  background: rgba(52,211,153,0.10);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}
.about-ico svg{
  width: 22px;
  height: 22px;
  color: var(--primary);
}
.about-title{
  font-weight: 850;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.92);
}
.about-desc{
  margin-top: 4px;
  color: rgba(255,255,255,0.72);
  font-size: 0.98rem;
  line-height: 1.6;
}
.about-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.about-media{
  display: grid;
  gap: 12px;
}
.media-card{
  border-radius: var(--r-xl);
  border: 1px solid rgba(52,211,153,0.18);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.media-svg{
  padding: 10px;
}
.media-svg svg{
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--r-xl) - 8px);
}
.media-svg img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--r-xl) - 8px);
}
.media-caption{
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(7,19,15,0.55);
}
.media-title{
  font-weight: 850;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.90);
}
.media-desc{
  margin-top: 4px;
  color: rgba(255,255,255,0.70);
  font-size: 0.98rem;
  line-height: 1.6;
}

.about-strip{
  margin-top: 16px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(52,211,153,0.18);
  background: rgba(7,19,15,0.58);
  box-shadow: var(--shadow-soft);
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.strip-item{
  border-radius: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.strip-k{
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.92);
}
.strip-v{
  margin-top: 2px;
  color: rgba(255,255,255,0.68);
  font-weight: 650;
}

/* FAQ */
.faq-list{ display: grid; gap: 12px; }
.faq-item{
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(52,211,153,0.22);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-q{
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 16px 16px;
  color: rgba(255,255,255,0.92);
  font-weight: 850;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}
.faq-a{
  padding: 0 16px 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  animation: faqFade 240ms var(--ease-soft) both;
}
@keyframes faqFade{
  from{ opacity: 0; transform: translateY(-4px); }
  to{ opacity: 1; transform: translateY(0); }
}
.chev{
  width: 22px; height: 22px;
  flex: 0 0 auto;
  transition: transform 240ms var(--ease-out);
  color: rgba(255,255,255,0.86);
}
.faq-item.is-open .chev{ transform: rotate(180deg); }

/* Contact */
.form-wrap{
  border-radius: var(--r-xl);
  padding: 16px;
  border: 1px solid rgba(52,211,153,0.26);
  background: rgba(7,19,15,0.78);
  box-shadow: var(--shadow);
}
.form-inner{
  border-radius: var(--r-lg);
  padding: 18px;
  border: 1px solid rgba(52,211,153,0.18);
  background: rgba(7,19,15,0.58);
  margin-bottom: 14px;
  display: grid;
  gap: 6px;
}
.form{ display: grid; gap: 12px; }
.row-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
label{
  font-size: 0.92rem;
  font-weight: 800;
  color: rgba(255,255,255,0.88);
  letter-spacing: -0.01em;
}
input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(52,211,153,0.30);
  background: rgba(52,211,153,0.06);
  color: rgba(255,255,255,0.92);
  outline: none;
  transition: box-shadow 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out), transform 180ms var(--ease-out);
}
input::placeholder, textarea::placeholder{ color: rgba(255,255,255,0.45); }
input:focus, textarea:focus{
  border-color: rgba(52,211,153,0.55);
  box-shadow: 0 0 0 2px rgba(52,211,153,0.28);
  background: rgba(52,211,153,0.08);
}
textarea{ min-height: 120px; resize: vertical; }

/* Footer */
.site-footer{
  padding: 42px 0;
  background: rgba(7,19,15,0.88);
  border-top: 1px solid rgba(52,211,153,0.22);
  color: rgba(255,255,255,0.72);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.footer-title{
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.footer-links{ display: grid; gap: 10px; }
.footer-links a{
  color: rgba(255,255,255,0.74);
  text-decoration: none;
  font-weight: 650;
}
.footer-links a:hover{ color: rgba(255,255,255,0.90); }

/* Reveal */
.reveal{
  opacity: 0;
  transform: translateY(14px) scale(0.995);
  filter: blur(6px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out),
    filter 700ms var(--ease-out);
  will-change: opacity, transform, filter;
}
.reveal.in-view{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; filter: none; transition: none; }
}

/* WhatsApp Floating Button */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 999px;

  background: rgba(7,19,15,0.72);
  border: 1px solid rgba(52,211,153,0.26);
  backdrop-filter: blur(14px);

  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.01em;

  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
  transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out);
}
.wa-float:hover{
  transform: translateY(-2px);
  border-color: rgba(52,211,153,0.44);
  background: rgba(7,19,15,0.82);
}
.wa-ico{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(52,211,153,0.10);
  border: 1px solid rgba(52,211,153,0.22);
  color: var(--primary);
}
.wa-ico svg{ width: 20px; height: 20px; }
.wa-txt{ display: inline-block; }

/* Responsive */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .about-grid{ grid-template-columns: 1fr; }
  .about-strip{ grid-template-columns: 1fr; }
  .hero-meta{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .row-2{ grid-template-columns: 1fr; }
  .wa-txt{ display: none; }
}
/* ===== Ajustes da seção SOBRE (equaliza imagens + remove buraco lateral) ===== */

.about-grid{
  align-items: stretch;                 /* faz as colunas terem a mesma “altura base” */
}

.about-copy{
  height: 100%;                         /* ocupa a altura disponível da coluna */
  display: flex;
  flex-direction: column;
}

.about-points{
  margin-top: 14px;
}

.about-actions{
  margin-top: auto;                     /* empurra os botões para o fim do card */
  padding-top: 10px;
}

/* garante que as duas imagens fiquem com o MESMO tamanho visual */
.about-media{
  align-content: stretch;
}

.media-card{
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* novo wrapper p/ imagem (mesma altura em ambos os cards) */
.media-media{
  padding: 10px;
}

.media-media img{
  width: 100%;
  height: 220px;                        /* ALTURA FIXA = imagens iguais */
  display: block;
  border-radius: calc(var(--r-xl) - 8px);
  object-fit: cover;                    /* corta proporcionalmente sem distorcer */
}

/* em telas grandes, dá um “respiro” e mantém proporção bonita */
@media (min-width: 1020px){
  .media-media img{ height: 240px; }
}

/* em mobile, mantém altura mais enxuta */
@media (max-width: 560px){
  .media-media img{ height: 200px; }
}

/* Toats
    */

.toast{
  position: fixed;
  right: 18px;
  bottom: 86px; /* sobe um pouco pra não bater no WhatsApp */
  z-index: 9999;
  width: min(420px, calc(100vw - 36px));
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out);
}

.toast.show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-inner{
  display: grid;
  grid-template-columns: 40px 1fr 38px;
  gap: 12px;
  align-items: start;

  padding: 14px 14px;
  border-radius: 18px;

  background: rgba(7,19,15,0.82);
  border: 1px solid rgba(52,211,153,0.22);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
}

.toast-icon{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--primary);
}

.toast[data-type="success"] .toast-inner{
  border-color: rgba(52,211,153,0.30);
}

.toast[data-type="error"] .toast-inner{
  border-color: rgba(248,113,113,0.35);
}

.toast[data-type="error"] .toast-icon{
  color: rgba(248,113,113,0.95);
  border-color: rgba(248,113,113,0.25);
  background: rgba(248,113,113,0.08);
}

.toast-title{
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.94);
  margin-top: 2px;
}

.toast-msg{
  margin-top: 4px;
  color: rgba(255,255,255,0.72);
  font-weight: 650;
  line-height: 1.45;
}

.toast-close{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.88);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.toast-close:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(52,211,153,0.22);
}

/* Mobile: toast ocupa menos altura e não briga com botão */
@media (max-width: 560px){
  .toast{ bottom: 78px; }
}


.req{
  color: var(--primary);
  font-weight: 900;
  margin-left: 4px;
}

/* Toast premium */
.toast{
  position: fixed;
  right: 18px;
  bottom: 86px; /* não bate no WhatsApp */
  z-index: 9999;
  width: min(420px, calc(100vw - 36px));
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out);
}
.toast.show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.toast-inner{
  display: grid;
  grid-template-columns: 40px 1fr 38px;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  background: rgba(7,19,15,0.82);
  border: 1px solid rgba(52,211,153,0.22);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
}
.toast-icon{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--primary);
}
.toast[data-type="success"] .toast-inner{
  border-color: rgba(52,211,153,0.30);
}
.toast[data-type="error"] .toast-inner{
  border-color: rgba(248,113,113,0.35);
}
.toast[data-type="error"] .toast-icon{
  color: rgba(248,113,113,0.95);
  border-color: rgba(248,113,113,0.25);
  background: rgba(248,113,113,0.08);
}
.toast-title{
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.94);
  margin-top: 2px;
}
.toast-msg{
  margin-top: 4px;
  color: rgba(255,255,255,0.72);
  font-weight: 650;
  line-height: 1.45;
}
.toast-close{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.88);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.toast-close:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(52,211,153,0.22);
}
@media (max-width: 560px){
  .toast{ bottom: 78px; }
}
