/* Temperatura On-Line — Static (cPanel/Apache ready)
   No build tools required. Upload contents to public_html.
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root{
  --bg:#f6f8fc;
  --bg2:#eef2fb;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:rgba(15,23,42,.12);

  --primary:#0ea5e9;
  --primary2:#2563eb;
  --accent:#f97316;
  --accent2:#fb7185;

  --success:#16a34a;

  --shadow: 0 18px 40px rgba(2,6,23,.10);
  --shadow2: 0 10px 25px rgba(2,6,23,.08);
  --radius: 18px;

  --headerH: 86px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(14,165,233,.18), transparent 60%),
    radial-gradient(900px 520px at 85% 10%, rgba(249,115,22,.14), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2) 55%, #fff);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header{
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--headerH);
  z-index: 50;
  background: rgba(246,248,252,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,23,42,.10);
}
.header-inner{
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 220px;
}
.brand-badge{
  width:44px;height:44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  display:grid; place-items:center;
  box-shadow: 0 10px 25px rgba(14,165,233,.25);
}
.brand-badge svg{ width:22px; height:22px; color:#fff; }
.brand-title{
  line-height:1.05;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-weight:700;
  letter-spacing:-.02em;
  font-size: 22px;
}
.brand-title .accent{ color: var(--primary2); }
.nav{
  display:flex;
  align-items:center;
  gap: 18px;
}
.brand-subtitle{
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: normal !important;
  color: rgba(15,23,42,.40);
}
.nav a{
  font-size: 14px;
  color: rgba(15,23,42,.78);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav a:hover{
  background: rgba(14,165,233,.10);
  color: var(--text);
  transform: translateY(-1px);
}
.header-cta{
  display:flex; align-items:center; gap:10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow2);
  cursor:pointer;
  font-weight: 650;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{ transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active{ transform: translateY(0px); }
.btn-primary{
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color:#fff;
}
.btn-secondary{
  background: rgba(255,255,255,.72);
}
.btn-accent{
  border:none;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#fff;
}
.icon{
  width:18px; height:18px;
}

.hover\:border-primary\/50:hover {
  border: 2px solid rgba(14,165,233,.55);
  /*border-color:rgba(14,165,233,.55);*/
}

/* Mobile menu */
.menu-btn{
  display:none;
  width:44px;height:44px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow2);
}
.mobile-panel{
  display:none;
  position: fixed;
  top: var(--headerH);
  left:0; right:0;
  background: rgba(246,248,252,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,23,42,.10);
  padding: 14px 16px 18px;
}
.mobile-panel a{
  display:block;
  padding: 12px 12px;
  border-radius: 12px;
  font-weight: 650;
  color: rgba(15,23,42,.85);
}
.mobile-panel a:hover{ background: rgba(14,165,233,.10); }

/* Sections */
main{ padding-top: calc(var(--headerH) + 12px); }
section{ scroll-margin-top: calc(var(--headerH) + 14px); }

/* ✅ AJUSTE: páginas internas (reduz espaço no mobile) */
.page-content{
  margin-top: calc(var(--headerH) + 14px);
}
@media (max-width: 760px){
  .page-content{
    margin-top: calc(var(--headerH) + -10px);
  }
}

.hero{ padding: 48px 0 26px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 28px;
  align-items:center;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(14,165,233,.10);
  color: rgba(15,23,42,.80);
  border: 1px solid rgba(14,165,233,.20);
  font-size: 13px;
  font-weight: 650;
}
.pulse{
  width:10px;height:10px;border-radius:50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(14,165,233,.35);
  animation: pulse 1.6s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(14,165,233,.35); }
  70%{ box-shadow: 0 0 0 14px rgba(14,165,233,0); }
  100%{ box-shadow: 0 0 0 0 rgba(14,165,233,0); }
}
h1{
  margin: 16px 0 10px;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing:-.03em;
  line-height:1.06;
  font-size: clamp(34px, 4.3vw, 56px);
}
.grad{
  background: linear-gradient(135deg, var(--primary2), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead{
  margin: 0 0 18px;
  color: rgba(15,23,42,.72);
  font-size: 16.5px;
  line-height:1.6;
  max-width: 58ch;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:12px; margin: 16px 0 18px; }
.feature-row{ display:flex; flex-wrap:wrap; gap:10px; }
.pill-card{
  display:flex; align-items:center; gap:10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow2);
}
.pill-card .meta{ line-height:1.05; }
.pill-card .meta b{ display:block; font-size: 13px; }
.pill-card .meta span{ font-size: 12px; color: rgba(15,23,42,.62); }
.note{ margin-top:10px; font-size: 12px; color: rgba(15,23,42,.55); }

.card{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card.pad{ padding: 22px; }
.card h2{
  margin: 0 0 6px;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  letter-spacing:-.02em;
}
.card p{ margin: 0 0 14px; color: rgba(15,23,42,.65); }
.checklist{ list-style:none; padding:0; margin: 14px 0 18px; display:grid; gap:10px; }
.checklist li{ display:flex; gap:10px; align-items:flex-start; }
.badge-ok{
  width:20px;height:20px;border-radius: 999px;
  display:grid; place-items:center;
  background: rgba(22,163,74,.14);
  color: var(--success);
  flex: 0 0 auto;
  margin-top: 2px;
}
.hr-actions{ display:grid; gap:10px; }

/* Generic section titles */
.section{ padding: 56px 0; }
.section.alt{
  background: rgba(15,23,42,.03);
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.section-head{ text-align:center; margin-bottom: 28px; }
.section-head h2{
  margin: 0 0 10px;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  letter-spacing:-.02em;
  font-size: clamp(26px, 3vw, 38px);
}
.section-head p{
  margin:0 auto;
  max-width: 72ch;
  color: rgba(15,23,42,.65);
  line-height: 1.6;
}

/* Grids */
.grid-4{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.grid-2{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

.botao-p-link{
  width:190px;
  height:30px;
  border-radius: 12px;
  display:grid; place-items:center;
  font-size: 12px;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color:#fff;
  /* MOVIMENTO */
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.botao-p-link:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
}
.botao-p-link:active{
  transform: translateY(0);
}

.botao-p-link2{
  width:190px;
  height:30px;
  border-radius: 12px;
  display:grid; place-items:center;
  font-size: 12px;
  border: none;
  background: linear-gradient(135deg, var(--card), var(--card));
  color: rgba(15,23,42,.3);
  /* MOVIMENTO */
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.botao-p-link2:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
}
.botao-p-link2:active{
  transform: translateY(0);
}

.feature{
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover{ transform: translateY(-3px); box-shadow: var(--shadow); }
.feature .ico{
  width:42px;height:42px;border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(14,165,233,.12);
  color: var(--primary2);
  margin-bottom: 10px;
}
.feature .botao-p{
  width:180px;
  height:30px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(14,165,233,.0);
  border: 1px solid rgba(14,165,233,.70);
  color: rgba(15,23,42,.65);
  font-size: 12px;
  margin-bottom: 10px;
}
.feature h3{ margin: 8px 0 6px; font-size: 16px; }
.feature p{ margin:0; color: rgba(15,23,42,.65); line-height:1.55; font-size: 14.5px; }

/* Steps */
.step{ position:relative; padding: 18px; }
.step .num{
  width:34px;height:34px;border-radius: 12px;
  display:grid; place-items:center;
  font-weight:800;
  background: rgba(14,165,233,.14);
  color: var(--primary2);
}
.step .row{ display:flex; gap:12px; align-items:flex-start; }
.step h3{ margin: 8px 0 6px; font-size: 16px; }
.step p{ margin:0; color: rgba(15,23,42,.65); line-height:1.55; font-size: 14.5px; }

/* Pricing */
.plan{ padding: 18px; border-radius: 20px; }
.plan.popular{
  border: 4px solid rgba(14,165,233,.55);
  background: linear-gradient(135deg, rgba(14,165,255,.0), rgba(14,165,255,.0));
  box-shadow: 0 22px 45px rgba(14,165,233,.18);
}
.plan .top{
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
  margin-bottom: 10px;
}
.pill-pop{
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(14,165,233,.12);
  color: var(--primary2);
  border: 1px solid rgba(14,165,233,.22);
}
.plan h3{ margin: 0; font-size: 18px; }
.plan p{ margin: 6px 0 0; color: rgba(15,23,42,.65); }
.plan ul{ list-style:none; padding:0; margin: 14px 0 16px; display:grid; gap:10px; }
.plan li{ display:flex; gap:10px; align-items:flex-start; color: rgba(15,23,42,.78); }
.plan .cta{ width:100%; }

/* FAQ */
.faq{
  max-width: 860px;
  margin: 0 auto;
  display:grid;
  gap: 10px;
}
.faq-item{
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.faq-q{
  width:100%;
  text-align:left;
  background: transparent;
  border:0;
  padding: 14px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  font-weight: 750;
  cursor:pointer;
  font-size: 18px;
}
.faq-q span{ color: rgba(15,23,42,.88); }
.faq-a{
  padding: 0 16px 14px;
  color: rgba(15,23,42,.68);
  line-height:1.6;
  display:none;
}
.faq-item.open .faq-a{ display:block; }
.faq-item.open .chev{ transform: rotate(180deg); }
.chev{ transition: transform .2s ease; }

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items:start;
}
.kv{ padding: 18px; }
.kv .mini{
  display:flex; gap:10px; align-items:center;
  color: rgba(15,23,42,.75);
  margin-top: 12px;
  font-weight:650;
}
.form{ padding: 18px; }
.field{ display:grid; gap: 6px; margin-bottom: 12px; }
label{ font-size: 13px; font-weight: 700; color: rgba(15,23,42,.78); }
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.92);
  outline: none;
  font-family: inherit;
}
input:focus, textarea:focus{
  border-color: rgba(14,165,233,.55);
  box-shadow: 0 0 0 4px rgba(14,165,233,.14);
}
textarea{ min-height: 120px; resize: vertical; }

/* =====================================================
   FOOTER — use APENAS .site-footer (sem duplicar footer{})
   ===================================================== */

.site-footer{
  margin-top: 0;
  padding: 72px 0 28px;
  border-top: 1px solid var(--line, #e5e9f2);
  background: rgba(246,248,252,.75);
  color: #1f2937;
}

.site-footer a{ color: rgba(31,41,55,.70); }
.site-footer a:hover{ color: #111827; }

.footer-grid{
  display: grid;
  gap: 28px;
  grid-template-columns: 1.5fr;
  margin-bottom: 28px;
}

.footer-brand{ max-width: 560px; }

.footer-brand-link{
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-logo{ width: 52px; height: 52px; }
.footer-logo img{ height: 45px; width: auto; display: block; }

.footer-title{
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #111827;
  line-height: 1.15;
}
.footer-subtitle{
  margin: 2px 0 0;
  font-size: 14px;
  color: rgba(31,41,55,.68);
}

.footer-desc{
  margin: 10px 0 14px;
  color: rgba(31,41,55,.70);
  line-height: 1.6;
}

.footer-kv{ display: grid; gap: 10px; }
.footer-kv-row{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(31,41,55,.70);
}
.footer-kv-ico{ color: var(--accent, #2563eb); }

.footer-h{
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 14px;
  color: #111827;
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-links a{
  font-size: 14px;
  color: rgba(31,41,55,.70);
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.footer-links a:hover{ color: #111827; }

.footer-bottom{
  padding-top: 18px;
  border-top: 1px solid var(--line, #e5e9f2);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-copy{
  margin: 0;
  font-size: 13px;
  color: rgba(31,41,55,.70);
}
.footer-bottom-links{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-bottom-links a{
  font-size: 13px;
  color: rgba(31,41,55,.70);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-bottom-links a:hover{ color: #111827; }

/* Responsivo */
@media (min-width: 900px){
  .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1fr; gap: 42px; }
  .footer-bottom{ flex-direction: row; align-items: center; }
}

/* Utilities */
.muted{ color: rgba(15,23,42,.65); }
.hidden{ display:none !important; }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  :root{ --headerH: 66px; }
  .nav, .header-cta{ display:none; }
  .menu-btn{ display:grid; place-items:center; }
  .mobile-panel{ display:block; }
  .grid-4{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .brand{ min-width: unset; }

  /* garante que o painel do menu fique acima do header,
     mas sem competir com o botão flutuante */
  .mobile-panel{ z-index: 60; }
}

/* =====================================================
   MAGNIFIC POPUP — ajustes gerais (sem quebrar mobile)
   ===================================================== */
.mfp-bg{ opacity: .6 !important; }
.mfp-container{ padding: 18px !important; }
.mfp-content{ text-align: center; }

/* Em vez de width:auto, limitamos por max-width */
.mfp-inline-holder .mfp-content{
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

/* =====================================================
   POPUP B2B (namespaced) — use:
   <div id="yotechPopupB2B" class="mfp-hide yotech-popup-b2b">...</div>
   ===================================================== */

#yotechPopupB2B.yotech-popup-b2b{
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

#yotechPopupB2B .popup-card{
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 22px 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  border: 1px solid rgba(15,23,42,.10);
}

#yotechPopupB2B .popup-close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.12);
  background: #fff;
  color: #0f172a;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

#yotechPopupB2B h2{
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  color: #0f172a;
}

#yotechPopupB2B p{
  margin: 0 0 16px;
  color: rgba(15,23,42,.72);
  font-size: 14px;
  line-height: 1.45;
}

#yotechPopupB2B .popup-form{
  display: grid;
  gap: 12px;
}

#yotechPopupB2B .popup-label{
  display: grid;
  gap: 6px;
}

#yotechPopupB2B .popup-label span{
  font-size: 12px;
  color: rgba(15,23,42,.70);
}

#yotechPopupB2B .popup-form input,
#yotechPopupB2B .popup-form select{
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.14);
  padding: 0 12px;
  outline: none;
  background: #fff;
  color: #0f172a;
}

#yotechPopupB2B .popup-form input:focus,
#yotechPopupB2B .popup-form select:focus{
  border-color: rgba(59,130,246,.55);
  box-shadow: 0 0 0 4px rgba(59,130,246,.12);
}

#yotechPopupB2B .popup-cta{
  height: 46px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(90deg, #0ea5e9, #2563eb);
  box-shadow: 0 14px 28px rgba(37,99,235,.18);
}

#yotechPopupB2B .popup-cta:hover{
  filter: brightness(1.03);
  transform: translateY(-1px);
}

#yotechPopupB2B .popup-note{
  display: block;
  text-align: center;
  font-size: 12px;
  color: rgba(15,23,42,.55);
  margin-top: -4px;
}

/* =====================================================
   POPUP MOBILE FIX — isolado para #yotechPopupB2B
   ===================================================== */
@media (max-width: 520px){

  .mfp-container{
    padding: 18px 12px !important;
  }

  .mfp-content{
    text-align: left !important;
  }

  .mfp-inline-holder .mfp-content{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  #yotechPopupB2B.yotech-popup-b2b{
    width: 100% !important;
    max-width: 100% !important;
  }

  #yotechPopupB2B .popup-card{
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 16px !important;
    padding: 16px 14px 14px !important;

    max-height: 85vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  #yotechPopupB2B h2{
    font-size: 18px !important;
    line-height: 1.2 !important;
    margin: 0 0 8px !important;
    word-break: break-word;
  }

  #yotechPopupB2B p{
    font-size: 13px !important;
    line-height: 1.4 !important;
    margin: 0 0 12px !important;
  }

  #yotechPopupB2B .popup-form{
    display: grid;
    gap: 10px;
  }

  #yotechPopupB2B .popup-form input,
  #yotechPopupB2B .popup-form select{
    width: 100% !important;
    height: 46px !important;
    font-size: 16px !important; /* evita zoom automático do iOS */
    border-radius: 14px !important;
  }

  #yotechPopupB2B .popup-cta{
    width: 100% !important;
    height: 48px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
  }

  #yotechPopupB2B .popup-note{
    font-size: 12px !important;
    margin-top: 2px !important;
  }

  #yotechPopupB2B .popup-close{
    top: 10px !important;
    right: 10px !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 12px !important;
  }
}

/* Remove o X padrão do Magnific (fica apenas o seu .popup-close) */
.mfp-close{
  display: none !important;
}

/* =====================================================
   WHATSAPP FLOAT (avatar da atendente) — FIX MOBILE
   Use no HTML:
   <a class="wa-float" ...><img ...></a>
   <div class="wa-float-label">Dúvidas? Fale com a Daniela 🙂</div>
   ===================================================== */

.wa-float{
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom)); /* iOS safe-area */
  z-index: 99999; /* garante acima do header/painéis/popup */

  width: 64px;
  height: 64px;
  border-radius: 999px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(15,23,42,.12);
  box-shadow: 0 14px 34px rgba(2,6,23,.18);

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;

  transform: translateZ(0);          /* iOS rendering fix */
  -webkit-transform: translateZ(0);
  will-change: transform;
}

.wa-float:hover{
  transform: translate3d(0,-3px,0);
  box-shadow: 0 18px 40px rgba(2,6,23,.22);
  border-color: rgba(14,165,233,.35);
}

.wa-float:active{ transform: translate3d(0,0,0); }

.wa-float img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wa-float::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  box-shadow: inset 0 0 0 2px rgba(14,165,233,.10);
}

/* Label (opcional) */
.wa-float-label{
  position: fixed;
  right: 92px;
  bottom: calc(32px + env(safe-area-inset-bottom));
  z-index: 99999;

  padding: 8px 10px;
  border-radius: 12px;

  background: rgba(15,23,42,.92);
  color: rgba(255,255,255,.95);
  font-size: 13px;
  font-weight: 650;

  box-shadow: 0 14px 34px rgba(2,6,23,.22);
  border: 1px solid rgba(255,255,255,.10);

  max-width: 240px;
  line-height: 1.25;
}

/* Seta do balão */
.wa-float-label::after{
  content:"";
  position:absolute;
  right: -6px;
  bottom: 14px;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  background: rgba(15,23,42,.92);
  border-right: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

/* Mobile: reduz e esconde o label (fica só o avatar) */
@media (max-width: 760px){
  .wa-float{
    width: 58px;
    height: 58px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
  }
  .wa-float-label{ display:none; }
}

/* ZOOM CARDS */
/*.card-anim{
  transform: scale(.75);
  opacity: 0;
  transition: transform .6s ease, opacity .6s ease;
  will-change: transform, opacity;
}*/
.card-anim{
  transform: scale(.75);
  opacity: 0;

  transition:
    transform 2.05s cubic-bezier(.16,1,.3,1),
    opacity   0.75s ease;
}
.card-anim.show{
  transform: scale(1);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce){
  .card-anim{ transition: none !important; transform:none !important; opacity:1 !important; }
}

/* ===== Botões (.botao-p / .botao-p-link) — responsivo mobile ===== */
@media (max-width: 760px){
  .feature .botao-p{
    width: 100%;
    max-width: 180px;
  }

  .botao-p-link{
    width: 100%;
    max-width: 190px;
  }
}

@media (max-width: 760px){
  .form-grid .grp-1{ order: 1; }
  .form-grid .grp-2{ order: 2; }
}

/* HOME: remove a faixa, mas mantém um respiro correto abaixo do header */
.page-home main.page-content{
  padding-top: 122px !important;  /* ajuste fino: 18px / 22px / 26px */
  margin-top: 0 !important;
}

/* evita o hero “puxar” espaço extra */
.page-home .hero{
  margin-top: 0 !important;
  padding-top: 0 !important;
}
