/* =========================
   Mirmibug - style.css (FULL REPLACE)
   - Dark/Neutral + Accent green #38d84e
   - Fixes: hero full width, navbar readability, solutions alignment,
            consent checkbox, WhatsApp button, general spacing
========================= */

:root{
  --bg: #000;
  --panel: rgba(20, 20, 20, 0.72);
  --panel2: rgba(18, 18, 18, 0.55);
  --border: rgba(255,255,255,0.08);
  --muted: rgba(255,255,255,0.70);
  --muted2: rgba(255,255,255,0.55);
  --accent: #38d84e;
  --accent2: rgba(56,216,78,.35);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: #fff;
}

/* =========================
   NAVBAR
========================= */
.navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 1px 0 rgba(56,216,78,0.18), 0 4px 24px rgba(0,0,0,0.4);
}

.nav-content{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  position: relative;
}

.logo::after{
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(56,216,78,0.7);
  animation: navdot 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes navdot{
  0%,100%{ opacity:1; box-shadow:0 0 8px rgba(56,216,78,.7); }
  50%     { opacity:.5; box-shadow:0 0 16px rgba(56,216,78,.9); }
}

.brand-name{
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 13px;
  color: var(--accent);
  text-shadow: 0 0 18px rgba(56,216,78,0.25);
}

.menu{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.menu a{
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 6px;
  position: relative;
  transition: color .18s ease;
  letter-spacing: .3px;
}

.menu a::after{
  content: '';
  position: absolute;
  bottom: 3px;
  left: 10px;
  right: 10px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.menu a:hover{
  color: #fff;
  background: transparent;
}

.menu a:hover::after{
  transform: scaleX(1);
}

.menu-active{
  color: var(--accent) !important;
}

.menu-active::after{
  transform: scaleX(1) !important;
}

.nav-actions{
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch{
  display: inline-flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(56,216,78,0.18);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}

.lang-btn{
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease;
}

.lang-btn.is-active{
  background: rgba(56,216,78,.15);
  color: #fff;
  border: 1px solid rgba(56,216,78,.35);
}

.btn-contacto{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #061009;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .3px;
  padding: 10px 18px;
  border-radius: 8px;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  box-shadow: 0 0 14px rgba(56,216,78,0.22);
}

.btn-contacto:hover{
  transform: translateY(-1px);
  opacity: .92;
  box-shadow: 0 0 26px rgba(56,216,78,0.40);
}

.menu-btn{
  display: none;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 16px;
}

/* MOBILE MENU */
.mobile-menu{
  position: fixed;
  top: 64px;
  right: 14px;
  width: 220px;
  z-index: 55;
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.65);
}

.mobile-menu a{
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(255,255,255,0.86);
  font-weight: 700;
  font-size: 14px;
}

.mobile-menu a:hover{
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.mobile-lang{
  margin-top: 10px;
  justify-content: center;
}

@media (max-width: 920px){
  .menu{ display: none; }
  .btn-contacto{ display: none; }
  .menu-btn{ display: inline-flex; }
}

/* =========================
   HERO (FULL WIDTH FIX)
========================= */
.hero{
  position: relative;
  isolation: isolate;
}

.hero-bg{
  background-image: url("../img/fondo_hero.png");
  background-size: cover;
  background-position: center;
}

/* ✅ Hero full width real (no depende de .section) */
.hero-section{
  width: 100%;
  max-width: 100%;
  padding-top: 140px;
  padding-bottom: 110px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}

/* overlay */
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(780px 320px at 50% 42%, rgba(56,216,78,0.18), transparent 58%),
    linear-gradient(to bottom, rgba(0,0,0,0.42), rgba(0,0,0,0.75));
}

/* ✅ Ahora sí se nota más ancho */
.hero-title{
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.05;
  text-shadow: 0 10px 35px rgba(0,0,0,.55);
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.hero-subtitle{
  margin-top: 18px;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  line-height: 1.6;
  text-shadow: 0 8px 28px rgba(0,0,0,.45);
}

.hero-btn{
  display: inline-flex;
  margin-top: 28px;
  padding: 14px 22px;
  border-radius: 14px;
  background: var(--accent);
  color: #061009;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(0,0,0,.55);
  transition: transform .18s ease, opacity .18s ease;
}

.hero-btn:hover{
  transform: translateY(-2px);
  opacity: .93;
}

.section-divider{
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, rgba(56,216,78,0.25), transparent);
}

/* =========================
   SECTIONS BASE
========================= */
.section{
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 18px;
}

.section-title{
  text-align: center;
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 18px;
}

.section-block{
  position: relative;
}

/* About "pillars" */
.pillars{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pillar-item{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(255,255,255,0.86);
}

/* =========================
   SERVICES / SOLUTIONS
========================= */
.services-pro{
  overflow: hidden;
}

.services-bg{
  position: absolute;
  inset: -120px -80px;
  z-index: -2;
  background:
    radial-gradient(800px 400px at 20% 20%, rgba(56,216,78,0.14), transparent 55%),
    radial-gradient(700px 380px at 85% 30%, rgba(56,216,78,0.12), transparent 58%),
    radial-gradient(600px 360px at 45% 95%, rgba(56,216,78,0.10), transparent 60%);
  filter: blur(10px);
  opacity: .95;
}

.services-inner{ position: relative; }

.services-head{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 28px auto;
}

.services-kicker{
  font-weight: 900;
  color: rgba(255,255,255,0.65);
  letter-spacing: .8px;
  font-size: 12px;
  text-transform: uppercase;
}

.services-subtitle{
  margin-top: 10px;
  color: rgba(255,255,255,0.74);
  line-height: 1.65;
  font-size: 16px;
}

.services-pills{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.services-pill{
  border: 1px solid rgba(56,216,78,0.25);
  background: rgba(56,216,78,0.08);
  color: rgba(255,255,255,0.9);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}

.solutions-stack{
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  margin-top: 18px;
  align-items: stretch;
}

.solutions-left{
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.solution-item{
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(12,12,12,0.72);
  border: 1px solid rgba(255,255,255,0.09);
  margin-bottom: 12px;
  overflow: hidden;
}

.solution-item::before,
.stack-layer::before{
  content:"";
  position:absolute;
  inset: -1px;
  background: radial-gradient(260px 260px at var(--x, 50%) var(--y, 50%),
    rgba(56,216,78,0.18),
    transparent 60%);
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events:none;
}
.solution-item:hover::before,
.stack-layer:hover::before{
  opacity: 1;
}

.solution-ico{
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(56,216,78,0.10);
  border: 1px solid rgba(56,216,78,0.20);
  color: var(--accent);
  flex: 0 0 auto;
}

.solution-ico svg{ width: 24px; height: 24px; }

.solution-title{ font-weight: 900; font-size: 18px; }
.solution-desc{ color: rgba(255,255,255,0.70); font-size: 14px; margin-top: 2px; }

.solutions-actions{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.solutions-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--accent);
  color: #061009;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, opacity .18s ease;
}

.solutions-btn:hover{ transform: translateY(-2px); opacity:.93; }

.solutions-link{
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 800;
}
.solutions-link:hover{ color: #fff; }

.stack-wrap{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stack-layer{
  position: relative;
  padding: 16px 16px;
  border-radius: 18px;
  background: rgba(12,12,12,0.72);
  border: 1px solid rgba(255,255,255,0.09);
  overflow: hidden;
}

.stack-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 8px;
}

.stack-top i{
  width: 26px;
  height: 6px;
  border-radius: 999px;
  background: rgba(56,216,78,0.20);
  border: 1px solid rgba(56,216,78,0.22);
}

.stack-body p{
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 10px 0;
}

.stack-metrics{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.metric{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,0.86);
}

.stack-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.74);
  font-size: 13px;
  line-height: 1.6;
}

.stack-brand .brand{ color: rgba(56,216,78,0.95); }

@media (max-width: 980px){
  .solutions-stack{ grid-template-columns: 1fr; }
}

/* CTA box */
.services-cta{
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(12,12,12,0.72);
  border: 1px solid rgba(255,255,255,0.09);
}

.services-cta-title{ font-weight: 900; margin-bottom: 4px; }
.services-cta-desc{ color: rgba(255,255,255,0.72); font-size: 14px; }

.services-cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(56,216,78,0.28);
  background: rgba(56,216,78,0.10);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}
.services-cta-btn:hover{ border-color: rgba(56,216,78,0.55); }

/* =========================
   QUOTE / COTIZADOR
========================= */
.quote-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.quote-card{
  padding: 18px;
  border-radius: 18px;
  background: rgba(12,12,12,0.72);
  border: 1px solid rgba(255,255,255,0.09);
}

.quote-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.quote-title{ font-weight: 900; font-size: 20px; }

.quote-badge{
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  background: rgba(56,216,78,0.12);
  border: 1px solid rgba(56,216,78,0.22);
  color: rgba(255,255,255,0.92);
}

.quote-row{ margin-bottom: 14px; }

.quote-row-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.quote-label{ font-weight: 900; font-size: 14px; }

.quote-chip{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,0.86);
}

.quote-help{
  margin-top: 8px;
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  line-height: 1.5;
}

.quote-two{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

select, input[type="number"], input[type="email"], input[type="text"], textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: #fff;
  outline: none;
}

textarea{ min-height: 120px; resize: vertical; }

input[type="range"]{ width: 100%; accent-color: var(--accent); }

.quote-divider{
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 12px 0;
}

.quote-mini-note{
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  font-weight: 700;
}

.quote-checks{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.check{
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
}

.check span{ font-weight: 900; font-size: 13px; }
.check em{ font-style: normal; color: rgba(255,255,255,0.60); font-size: 12px; }
.check input[type="checkbox"]{ width: 18px; height: 18px; accent-color: var(--accent); }

.quote-actions{
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.btn-cta{
  background: var(--accent);
  color: #061009;
  border: none;
  font-weight: 900;
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease;
}
.btn-cta:hover{ transform: translateY(-1px); opacity: .92; }

.btn-secondary{
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
  font-weight: 900;
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
}
.btn-secondary:hover{ border-color: rgba(255,255,255,0.20); }

.quote-result .quote-price-main{
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1px;
}

.quote-price-sub{
  margin-top: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  line-height: 1.5;
}

.quote-breakdown{
  margin-top: 14px;
  color: rgba(255,255,255,0.84);
  font-size: 14px;
  line-height: 1.6;
}

.break-items{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.break-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.break-label{ color: rgba(255,255,255,0.82); font-weight: 700; }
.break-val{ color: rgba(255,255,255,0.92); font-weight: 900; }

.break-mults{
  margin-top: 12px;
  color: rgba(255,255,255,0.70);
  font-size: 13px;
}

.break-note{
  margin-top: 12px;
  color: rgba(255,255,255,0.60);
  font-size: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
}

.quote-cta{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quote-disclaimer{
  margin-top: 12px;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 980px){
  .quote-grid{ grid-template-columns: 1fr; }
  .quote-two{ grid-template-columns: 1fr; }
  .quote-checks{ grid-template-columns: 1fr; }
  .quote-cta{ grid-template-columns: 1fr; }
  .quote-result .quote-price-main{ font-size: 40px; }
}

/* =========================
   CONTACT FORM
========================= */
.contact-form{
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form button[type="submit"]{
  background: var(--accent);
  color: #061009;
  border: none;
  font-weight: 900;
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease;
}

.contact-form button[type="submit"]:hover{
  transform: translateY(-1px);
  opacity: .92;
}

/* checkbox consentimiento */
.consent-row{
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}

.consent-row input[type="checkbox"]{
  width: 18px;
  height: 18px;
  margin: 0 !important;
  flex: 0 0 auto;
  accent-color: var(--accent);
}

/* =========================
   COTIZADOR CTA CARD (index.html)
========================= */
.cotiz-cta-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 36px;
  border-radius: 20px;
  background: rgba(12,12,12,0.72);
  border: 1px solid rgba(56,216,78,0.22);
  position: relative;
  overflow: hidden;
}

.cotiz-cta-card::before{
  content: "";
  position: absolute;
  inset: -80px;
  background: radial-gradient(600px 300px at 80% 50%, rgba(56,216,78,0.10), transparent 55%);
  pointer-events: none;
}

.cotiz-cta-left{ flex: 1; position: relative; }

.cotiz-cta-kicker{
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.cotiz-cta-title{
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -.5px;
}

.cotiz-cta-desc{
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
  max-width: 540px;
}

.cotiz-cta-features{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cotiz-cta-features li{
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  padding-left: 18px;
  position: relative;
}

.cotiz-cta-features li::before{
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.cotiz-cta-right{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
}

.cotiz-cta-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 26px;
  border-radius: 16px;
  background: var(--accent);
  color: #061009;
  font-weight: 900;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s ease, opacity .18s ease;
  box-shadow: 0 10px 35px rgba(56,216,78,0.25);
}

.cotiz-cta-btn:hover{ transform: translateY(-2px); opacity: .93; }

.cotiz-cta-note{
  color: rgba(255,255,255,0.50);
  font-size: 12px;
}

@media (max-width: 760px){
  .cotiz-cta-card{ flex-direction: column; align-items: flex-start; padding: 24px; }
  .cotiz-cta-right{ width: 100%; }
  .cotiz-cta-btn{ width: 100%; justify-content: center; }
}

/* =========================
   COTIZADOR PAGE HERO
========================= */
.cotiz-hero{
  padding-top: 120px;
  padding-bottom: 48px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

.cotiz-hero-kicker{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.cotiz-hero-title{
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.cotiz-hero-sub{
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Nav link active (current page) */
.menu-active{
  background: rgba(56,216,78,0.10);
  color: var(--accent) !important;
  border-radius: 10px;
}

/* =========================
   FORM FEEDBACK MSG
========================= */
.form-msg{
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  display: block;
}

.form-msg--ok{
  background: rgba(56,216,78,0.12);
  border: 1px solid rgba(56,216,78,0.35);
  color: #a6f5b0;
}

.form-msg--error{
  background: rgba(255,80,80,0.10);
  border: 1px solid rgba(255,80,80,0.30);
  color: #ffb3b3;
}

.form-msg--hidden{
  display: none;
}

/* =========================
   FOOTER
========================= */
.footer a{ text-decoration: none; }

/* =========================
   WHATSAPP FLOATING BUTTON
========================= */
.mirmibug-wa{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 9999px;
  background: #0b0f0c;
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .2px;
  border: 1px solid rgba(56,216,78,.45);
  box-shadow: 0 14px 40px rgba(0,0,0,.55);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.mirmibug-wa:hover{
  transform: translateY(-3px);
  border-color: rgba(56,216,78,.9);
  box-shadow: 0 18px 55px rgba(0,0,0,.62);
}

.wa-dot{
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(56,216,78,.85);
}

.wa-icon{ width: 22px; height: 22px; color: var(--accent); }
.wa-text{ font-size: 14px; white-space: nowrap; }

@media (max-width: 600px){
  .wa-text{ display: none; }
  .mirmibug-wa{ padding: 14px; }
}