
:root{
  --bg:#050B14;
  --bg-soft:#081423;
  --card:#0B1A2C;
  --card-2:#0F2238;
  --line:rgba(116,184,255,.18);
  --line-strong:rgba(116,184,255,.34);
  --ink:#F2F7FF;
  --ink-dim:#A9BAD1;
  --blue:#2F8FFF;
  --blue-2:#5FB8FF;
  --blue-3:#8DD4FF;
  --green:#3DDC84;
  --danger:#E5775D;
  --radius:24px;
  --pill:999px;
  --shadow:0 28px 90px rgba(0,0,0,.42);
  --glow:0 0 70px rgba(47,143,255,.25);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  min-height:100vh;
  background:
    radial-gradient(900px 520px at 12% -10%, rgba(47,143,255,.16), transparent 60%),
    radial-gradient(900px 620px at 100% 18%, rgba(95,184,255,.11), transparent 58%),
    linear-gradient(180deg, #050B14 0%, #06101C 42%, #050B14 100%);
  color:var(--ink);
  font-family:'Inter',sans-serif;
  line-height:1.6;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size:52px 52px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.8), transparent 78%);
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,.42) 100%);
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

h1,h2,h3,.display{
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  letter-spacing:.01em;
  font-weight:700;
  line-height:.98;
}

.wrap{
  width:min(1180px, calc(100% - 56px));
  margin:0 auto;
}

.scroll-progress{
  position:fixed;
  top:0;
  left:0;
  width:0%;
  height:3px;
  background:linear-gradient(90deg, var(--blue), var(--blue-3));
  z-index:999;
  box-shadow:0 0 20px rgba(47,143,255,.8);
}

.cursor-dot,
.cursor-ring{
  display:none;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 17px;
  border:1px solid rgba(95,184,255,.35);
  border-radius:var(--pill);
  background:rgba(47,143,255,.07);
  color:var(--blue-2);
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:11px;
  font-weight:600;
  box-shadow:inset 0 0 18px rgba(47,143,255,.08), 0 0 30px rgba(47,143,255,.08);
}

.eyebrow::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--blue);
  box-shadow:0 0 14px rgba(47,143,255,.9);
}

.nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:60;
  background:rgba(5,11,20,.72);
  border-bottom:1px solid rgba(116,184,255,.16);
  backdrop-filter:blur(18px);
  transition:background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.nav.scrolled{
  background:rgba(5,11,20,.88);
  box-shadow:0 18px 60px rgba(0,0,0,.32);
  border-color:rgba(116,184,255,.24);
}

.nav-inner{
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:'Oswald',sans-serif;
  font-size:18px;
  text-transform:uppercase;
  letter-spacing:.05em;
  white-space:nowrap;
}

.brand strong{
  color:var(--blue-2);
  font-weight:700;
}

.brand-mark{
  width:11px;
  height:11px;
  border-radius:50%;
  background:var(--blue);
  box-shadow:0 0 24px rgba(47,143,255,.95);
}

.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
  font-size:14px;
}

.nav-links a{
  position:relative;
  color:var(--ink-dim);
  transition:color .2s ease;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:2px;
  background:linear-gradient(90deg, var(--blue), var(--blue-3));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s ease;
}

.nav-links a:hover{
  color:var(--ink);
}

.nav-links a:hover::after{
  transform:scaleX(1);
}

.nav-cta{
  display:flex;
  align-items:center;
  gap:14px;
}

.icon-btn,
.menu-toggle{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  background:rgba(255,255,255,.035);
  border:1px solid var(--line);
  color:var(--ink);
  cursor:pointer;
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
}

.icon-btn:hover,
.menu-toggle:hover{
  transform:translateY(-2px);
  color:var(--blue-2);
  border-color:var(--line-strong);
  box-shadow:0 0 24px rgba(47,143,255,.20);
  background:rgba(47,143,255,.08);
}

.icon-btn.ig{
  color:#F26FB2;
}

.icon-btn.wa{
  color:var(--green);
}

.menu-toggle{
  display:none;
  font-size:24px;
}

.btn{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:14px 28px;
  border-radius:var(--pill);
  border:1px solid transparent;
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  letter-spacing:.07em;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.btn::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(110deg, transparent 0%, rgba(255,255,255,.32) 45%, transparent 70%);
  transform:translateX(-130%);
  transition:transform .7s ease;
}

.btn:hover::after{
  transform:translateX(130%);
}

.btn:hover{
  transform:translateY(-3px);
}

.btn-primary{
  background:linear-gradient(135deg, var(--blue), var(--blue-2));
  color:#03101f;
  box-shadow:0 14px 44px rgba(47,143,255,.30);
}

.btn-primary:hover{
  box-shadow:0 18px 58px rgba(47,143,255,.46);
}

.btn-outline{
  background:rgba(255,255,255,.035);
  color:var(--ink);
  border-color:var(--line);
}

.btn-outline:hover{
  border-color:var(--blue-2);
  box-shadow:0 18px 50px rgba(47,143,255,.16);
}

.btn-big{
  min-height:58px;
  padding-inline:36px;
}

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:150px 0 90px;
  overflow:hidden;
  border-bottom:1px solid rgba(116,184,255,.16);
}

.hero::before{
  content:"";
  position:absolute;
  inset:76px 0 auto 0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(95,184,255,.58), transparent);
}

.hero-bg-orb{
  position:absolute;
  border-radius:50%;
  filter:blur(10px);
  pointer-events:none;
  opacity:.7;
}

.orb-one{
  width:420px;
  height:420px;
  right:7%;
  top:16%;
  background:radial-gradient(circle, rgba(47,143,255,.22), transparent 64%);
  animation:floatOrb 8s ease-in-out infinite;
}

.orb-two{
  width:280px;
  height:280px;
  left:-80px;
  bottom:10%;
  background:radial-gradient(circle, rgba(95,184,255,.14), transparent 64%);
  animation:floatOrb 10s ease-in-out infinite reverse;
}

@keyframes floatOrb{
  0%,100%{transform:translateY(0) translateX(0);}
  50%{transform:translateY(-22px) translateX(18px);}
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:78px;
}

.hero h1{
  margin:20px 0 24px;
  max-width:670px;
  font-size:clamp(46px, 5.4vw, 82px);
  text-shadow:0 18px 55px rgba(0,0,0,.45);
  text-wrap:balance;
}

.hero h1 .accent{
  color:var(--blue-2);
  text-shadow:0 0 42px rgba(47,143,255,.38);
}

.lead{
  max-width:560px;
  margin-bottom:34px;
  color:var(--ink-dim);
  font-size:18px;
  line-height:1.75;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:26px;
}

.hero-note{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--ink-dim);
  font-size:13px;
}

.dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 18px rgba(61,220,132,.9);
  animation:pulse 1.8s infinite;
}

@keyframes pulse{
  0%,100%{opacity:1; transform:scale(1);}
  50%{opacity:.45; transform:scale(.72);}
}

.trust-row{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
  max-width:570px;
  margin-top:34px;
}

.trust-row div{
  padding:16px 14px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.035);
  backdrop-filter:blur(10px);
}

.trust-row strong{
  display:block;
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  color:var(--ink);
  font-size:16px;
}

.trust-row span{
  color:var(--ink-dim);
  font-size:12px;
}

.hero-photo{
  position:relative;
}

.hero-photo .frame,
.sobre-photo{
  position:relative;
  border:1px solid rgba(116,184,255,.27);
  border-radius:28px;
  padding:10px;
  background:
    linear-gradient(145deg, rgba(95,184,255,.16), transparent 38%),
    rgba(11,26,44,.72);
  box-shadow:var(--shadow), var(--glow);
  overflow:hidden;
  transition:transform .45s ease, box-shadow .45s ease;
}

.hero-photo .frame{
  transform:perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.hero-photo .frame:hover,
.sobre-photo:hover{
  transform:translateY(-7px);
  box-shadow:0 38px 110px rgba(0,0,0,.48), 0 0 90px rgba(47,143,255,.32);
}

.hero-photo img{
  width:100%;
  aspect-ratio:4/4.7;
  object-fit:cover;
  object-position:center 18%;
  border-radius:20px;
  filter:contrast(1.07) saturate(1.06);
}

.hero-photo .tag{
  position:absolute;
  left:24px;
  bottom:24px;
  padding:11px 18px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--blue), var(--blue-2));
  color:#03101f;
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:12px;
  font-weight:700;
  box-shadow:0 15px 40px rgba(47,143,255,.38);
}

.badge-float{
  position:absolute;
  top:20px;
  right:-8px;
  z-index:4;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(8,20,35,.74);
  backdrop-filter:blur(14px);
  color:var(--ink-dim);
  font-size:12px;
  box-shadow:0 18px 50px rgba(0,0,0,.32);
}

.badge-float strong{
  color:var(--ink);
  font-family:'Oswald',sans-serif;
  font-size:15px;
}

section{
  position:relative;
  padding:112px 0;
}

.section-alt{
  background:
    linear-gradient(180deg, rgba(8,20,35,.84), rgba(5,11,20,.92)),
    var(--bg-soft);
  border-top:1px solid rgba(116,184,255,.14);
  border-bottom:1px solid rgba(116,184,255,.14);
}

.section-head{
  max-width:700px;
  margin-bottom:54px;
}

.section-head h2,
.objection-grid h2,
.sobre-text h2{
  margin-top:18px;
  font-size:clamp(32px, 4vw, 52px);
  text-wrap:balance;
}

.section-head p{
  margin-top:16px;
  color:var(--ink-dim);
  font-size:16px;
}

.objection-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:72px;
  align-items:start;
}

.x-list{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:8px;
}

.x-list li{
  list-style:none;
  display:flex;
  gap:12px;
  align-items:flex-start;
  color:var(--ink-dim);
  font-size:15px;
  padding:16px 18px;
  border:1px solid rgba(229,119,93,.18);
  border-radius:18px;
  background:rgba(229,119,93,.045);
}

.x-list .mark{
  color:var(--danger);
  font-family:'Oswald',sans-serif;
  font-weight:700;
}

.objection-note{
  margin-top:22px;
  padding:22px 24px;
  border:1px solid rgba(95,184,255,.22);
  border-left:3px solid var(--blue);
  border-radius:18px;
  background:rgba(47,143,255,.07);
  color:var(--ink);
  box-shadow:0 18px 50px rgba(0,0,0,.18);
}

.sobre-grid{
  display:grid;
  grid-template-columns:.86fr 1.14fr;
  gap:72px;
  align-items:center;
}

.sobre-photo img{
  width:100%;
  aspect-ratio:3/3.7;
  object-fit:cover;
  object-position:center top;
  border-radius:18px;
  filter:contrast(1.06) saturate(1.05);
}

.sobre-text p{
  max-width:650px;
  margin-top:18px;
  color:var(--ink-dim);
  font-size:16px;
}

.sobre-text p.quote{
  margin-top:30px;
  padding-top:26px;
  border-top:1px solid var(--line);
  color:var(--ink);
  font-family:'Oswald',sans-serif;
  font-size:22px;
  line-height:1.35;
}

.quem-grid,
.ben-grid,
.compare-grid,
.dif-grid{
  display:grid;
  gap:16px;
}

.quem-grid{
  grid-template-columns:repeat(4,1fr);
}

.ben-grid{
  grid-template-columns:repeat(4,1fr);
}

.dif-grid{
  grid-template-columns:repeat(2,1fr);
}

.quem-item,
.ben-item,
.dif-card,
.dep-card,
.compare-col{
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:22px;
  background:
    linear-gradient(145deg, rgba(95,184,255,.08), transparent 42%),
    rgba(11,26,44,.72);
  backdrop-filter:blur(12px);
  box-shadow:0 20px 60px rgba(0,0,0,.18);
  transition:transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.quem-item::before,
.ben-item::before,
.dif-card::before,
.compare-col::before,
.dep-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(420px 120px at var(--x, 50%) var(--y, 0%), rgba(95,184,255,.16), transparent 62%);
  opacity:0;
  transition:opacity .28s ease;
  pointer-events:none;
}

.quem-item:hover,
.ben-item:hover,
.dif-card:hover,
.compare-col:hover,
.dep-card:hover{
  transform:translateY(-7px);
  border-color:rgba(95,184,255,.38);
  box-shadow:0 26px 76px rgba(0,0,0,.26), 0 0 48px rgba(47,143,255,.12);
}

.quem-item:hover::before,
.ben-item:hover::before,
.dif-card:hover::before,
.compare-col:hover::before,
.dep-card:hover::before{
  opacity:1;
}

.quem-item{
  min-height:118px;
  padding:24px;
  display:flex;
  gap:14px;
  align-items:flex-start;
  color:var(--ink-dim);
  font-size:15px;
}

.check{
  color:var(--blue-2);
  font-family:'Oswald',sans-serif;
  font-weight:700;
}

.timeline{
  position:relative;
  max-width:880px;
  margin-left:10px;
  padding-left:36px;
}

.timeline::before{
  content:"";
  position:absolute;
  left:9px;
  top:0;
  bottom:0;
  width:2px;
  background:linear-gradient(to bottom, transparent, var(--blue), var(--blue-2), transparent);
  box-shadow:0 0 24px rgba(47,143,255,.7);
}

.tl-item{
  position:relative;
  display:grid;
  grid-template-columns:84px 1fr;
  gap:24px;
  padding:30px 0;
  border-bottom:1px solid rgba(116,184,255,.13);
}

.tl-item::before{
  content:"";
  position:absolute;
  left:-34px;
  top:39px;
  width:16px;
  height:16px;
  border-radius:50%;
  background:var(--blue);
  border:4px solid var(--bg-soft);
  box-shadow:0 0 26px rgba(47,143,255,.95);
}

.tl-num{
  color:var(--blue-2);
  font-size:38px;
  text-shadow:0 0 26px rgba(47,143,255,.45);
}

.tl-body h3{
  font-size:20px;
  text-transform:none;
  letter-spacing:0;
  margin-bottom:6px;
}

.tl-body p{
  color:var(--ink-dim);
  max-width:540px;
  font-size:15px;
}

.ben-item{
  min-height:170px;
  padding:28px 24px;
  color:var(--ink-dim);
  font-size:15px;
}

.ben-item .icon{
  display:block;
  width:44px;
  height:44px;
  margin-bottom:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:rgba(47,143,255,.09);
  border:1px solid rgba(116,184,255,.18);
  font-size:21px;
}

.ben-item .check{
  display:none;
}

.compare-grid{
  grid-template-columns:1fr 1fr;
}

.compare-col{
  padding:34px;
}

.compare-col h3{
  margin-bottom:22px;
  font-size:16px;
  letter-spacing:.08em;
}

.compare-col.no h3,
.compare-col.no li span{
  color:var(--danger);
}

.compare-col.yes h3,
.compare-col.yes li span{
  color:var(--blue-2);
}

.compare-col ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.compare-col li{
  display:flex;
  gap:12px;
  color:var(--ink-dim);
  font-size:15px;
}

.dif-card{
  min-height:160px;
  padding:34px;
}

.dif-card::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:54px;
  height:3px;
  border-radius:0 0 999px 0;
  background:linear-gradient(90deg, var(--blue), var(--blue-2));
  box-shadow:0 0 20px rgba(47,143,255,.85);
}

.dif-card p{
  max-width:460px;
  color:var(--ink);
  font-family:'Oswald',sans-serif;
  font-size:22px;
  line-height:1.32;
}

.testimonial-shell{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:18px;
  align-items:center;
}

.testimonial-track{
  position:relative;
  min-height:250px;
}

.dep-card{
  position:absolute;
  inset:0;
  padding:34px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  opacity:0;
  transform:translateX(18px) scale(.98);
  pointer-events:none;
  transition:opacity .35s ease, transform .35s ease;
}

.dep-card.active{
  opacity:1;
  transform:translateX(0) scale(1);
  pointer-events:auto;
}

.stars{
  color:var(--blue-2);
  letter-spacing:5px;
  margin-bottom:18px;
  text-shadow:0 0 20px rgba(47,143,255,.55);
}

.play{
  width:54px;
  height:54px;
  margin-bottom:18px;
  border-radius:50%;
  border:1px solid rgba(95,184,255,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--blue-2);
  box-shadow:0 0 26px rgba(47,143,255,.17);
}

.dep-card p{
  color:var(--ink-dim);
}

.testimonial-arrow{
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid var(--line);
  background:rgba(255,255,255,.035);
  color:var(--ink);
  cursor:pointer;
  transition:transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.testimonial-arrow:hover{
  transform:translateY(-2px);
  color:var(--blue-2);
  border-color:var(--line-strong);
  box-shadow:0 0 28px rgba(47,143,255,.18);
}

.faq{
  max-width:860px;
  padding:10px 26px;
  border:1px solid var(--line);
  border-radius:24px;
  background:rgba(11,26,44,.54);
  backdrop-filter:blur(12px);
  box-shadow:0 22px 70px rgba(0,0,0,.20);
}

.faq-item{
  border-bottom:1px solid rgba(116,184,255,.13);
}

.faq-item:last-child{
  border-bottom:none;
}

.faq-q{
  width:100%;
  padding:24px 0;
  border:none;
  background:none;
  color:var(--ink);
  font-family:'Oswald',sans-serif;
  font-size:18px;
  text-align:left;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  cursor:pointer;
  transition:color .2s ease;
}

.faq-q:hover{
  color:var(--blue-2);
}

.faq-q .ic{
  width:30px;
  height:30px;
  border:1px solid var(--line);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--blue-2);
  transition:transform .25s ease, background .25s ease;
}

.faq-item.open .faq-q .ic{
  transform:rotate(45deg);
  background:rgba(47,143,255,.10);
}

.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.faq-a p{
  max-width:620px;
  padding:0 0 24px;
  color:var(--ink-dim);
  font-size:15px;
}

.cta-final{
  overflow:hidden;
  text-align:center;
  padding:128px 0;
  background:
    radial-gradient(700px 340px at 50% 0%, rgba(47,143,255,.28), transparent 68%),
    linear-gradient(180deg, rgba(8,20,35,.88), rgba(5,11,20,.98));
  border-top:1px solid rgba(116,184,255,.16);
  border-bottom:1px solid rgba(116,184,255,.16);
}

.cta-final .wrap{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.cta-glow{
  position:absolute;
  left:50%;
  top:0;
  width:820px;
  height:820px;
  transform:translate(-50%,-62%);
  border-radius:50%;
  background:radial-gradient(circle, rgba(47,143,255,.18), transparent 68%);
  pointer-events:none;
}

.cta-final h2{
  max-width:820px;
  margin:22px auto 20px;
  font-size:clamp(38px, 5vw, 70px);
  text-wrap:balance;
}

.cta-final p.sub{
  max-width:520px;
  margin:0 auto 38px;
  color:var(--ink-dim);
  font-size:17px;
}

footer{
  padding:62px 0 34px;
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  gap:28px;
  padding-bottom:34px;
  margin-bottom:22px;
  border-bottom:1px solid rgba(116,184,255,.13);
}

.footer-brand{
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  font-size:18px;
}

.footer-brand small{
  display:block;
  margin-top:8px;
  color:var(--ink-dim);
  font-family:'Inter',sans-serif;
  text-transform:none;
  font-size:13px;
  font-weight:400;
  letter-spacing:0;
}

.footer-links{
  display:flex;
  gap:30px;
  color:var(--ink-dim);
  font-size:14px;
}

.footer-links a:hover{
  color:var(--blue-2);
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  color:var(--ink-dim);
  font-size:13px;
}

.wa-float{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:70;
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(61,220,132,.12);
  border:1px solid rgba(61,220,132,.40);
  color:var(--green);
  font-size:26px;
  box-shadow:0 0 24px rgba(61,220,132,.32);
  animation:waPulse 2.4s infinite;
}

@keyframes waPulse{
  0%,100%{transform:translateY(0); box-shadow:0 0 22px rgba(61,220,132,.30);}
  50%{transform:translateY(-5px); box-shadow:0 0 38px rgba(61,220,132,.58);}
}

.reveal{
  opacity:0;
  transform:translateY(32px);
  transition:opacity .78s ease, transform .78s ease;
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}

.reveal-delay-1{transition-delay:.10s;}
.reveal-delay-2{transition-delay:.18s;}
.reveal-delay-3{transition-delay:.26s;}

@media (hover:hover) and (pointer:fine){
  .cursor-dot,
  .cursor-ring{
    display:block;
    position:fixed;
    top:0;
    left:0;
    pointer-events:none;
    z-index:1000;
    transform:translate(-50%, -50%);
  }

  .cursor-dot{
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--blue-2);
    box-shadow:0 0 16px rgba(47,143,255,.85);
  }

  .cursor-ring{
    width:34px;
    height:34px;
    border-radius:50%;
    border:1px solid rgba(95,184,255,.45);
    transition:width .2s ease, height .2s ease, border-color .2s ease, background .2s ease;
  }

  .cursor-ring.hover{
    width:54px;
    height:54px;
    border-color:rgba(95,184,255,.72);
    background:rgba(47,143,255,.08);
  }
}

@media (max-width:980px){
  .nav-links{
    gap:18px;
  }

  .hero-grid,
  .objection-grid,
  .sobre-grid{
    grid-template-columns:1fr;
  }

  .hero{
    min-height:auto;
    padding:132px 0 80px;
  }

  .hero-photo{
    order:-1;
    max-width:430px;
    margin:0 auto;
  }

  .hero-photo .frame{
    transform:none;
  }

  .quem-grid,
  .ben-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:760px){
  .wrap{
    width:min(100% - 36px, 1180px);
  }

  .nav-inner{
    height:68px;
  }

  .menu-toggle{
    display:flex;
  }

  .nav-links{
    position:absolute;
    top:68px;
    left:18px;
    right:18px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:12px;
    border:1px solid var(--line);
    border-radius:20px;
    background:rgba(5,11,20,.95);
    backdrop-filter:blur(18px);
    box-shadow:0 24px 70px rgba(0,0,0,.42);
  }

  .nav-links.open{
    display:flex;
  }

  .nav-links a{
    padding:14px 12px;
    border-radius:14px;
  }

  .nav-links a:hover{
    background:rgba(47,143,255,.08);
  }

  .nav-links a::after{
    display:none;
  }

  .hero{
    padding:104px 0 64px;
  }

  .hero::before{
    top:68px;
  }

  .hero h1{
    font-size:42px;
  }

  .lead{
    font-size:16px;
    line-height:1.65;
  }

  .trust-row{
    grid-template-columns:1fr;
  }

  section{
    padding:76px 0;
  }

  .section-head{
    margin-bottom:34px;
  }

  .section-head h2,
  .objection-grid h2,
  .sobre-text h2{
    font-size:34px;
  }

  .hero-actions{
    flex-direction:column;
  }

  .hero-actions .btn{
    width:100%;
  }

  .quem-grid,
  .ben-grid,
  .compare-grid,
  .dif-grid{
    grid-template-columns:1fr;
  }

  .timeline{
    padding-left:28px;
  }

  .tl-item{
    grid-template-columns:52px 1fr;
    gap:16px;
    padding:26px 0;
  }

  .tl-num{
    font-size:30px;
  }

  .testimonial-shell{
    grid-template-columns:1fr;
  }

  .testimonial-arrow{
    display:none;
  }

  .testimonial-track{
    min-height:230px;
  }

  .footer-bottom{
    flex-direction:column;
  }
}

@media (max-width:460px){
  .wrap{
    width:min(100% - 30px, 1180px);
  }

  .brand{
    font-size:15px;
  }

  .nav-cta{
    gap:8px;
  }

  .icon-btn,
  .menu-toggle{
    width:38px;
    height:38px;
  }

  .hero h1{
    font-size:37px;
  }

  .hero-photo{
    max-width:328px;
  }

  .hero-photo .frame,
  .sobre-photo{
    border-radius:20px;
    padding:8px;
  }

  .hero-photo img,
  .sobre-photo img{
    border-radius:14px;
  }

  .badge-float{
    right:8px;
    top:12px;
    padding:9px 12px;
  }

  .hero-photo .tag{
    left:18px;
    bottom:18px;
    font-size:11px;
  }

  .section-head h2,
  .objection-grid h2,
  .sobre-text h2{
    font-size:31px;
  }

  .quem-item,
  .ben-item,
  .dif-card,
  .compare-col{
    border-radius:18px;
    padding:24px 22px;
  }

  .dif-card p{
    font-size:20px;
  }

  .faq{
    padding:6px 18px;
    border-radius:18px;
  }

  .faq-q{
    font-size:16px;
  }

  .cta-final{
    padding:92px 0;
  }

  .cta-final h2{
    font-size:38px;
  }

  .footer-links{
    width:100%;
    justify-content:space-between;
  }

  .wa-float{
    width:54px;
    height:54px;
    right:18px;
    bottom:18px;
  }
}

@media (prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto;
  }

  *,*::before,*::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    scroll-behavior:auto!important;
    transition-duration:.01ms!important;
  }

  .reveal{
    opacity:1;
    transform:none;
  }
}


/* ===== V3 MOBILE CONVERSION ===== */
.mobile-sticky-cta{
  display:none;
}

@media (max-width:760px){
  body{
    padding-bottom:88px;
  }

  .mobile-sticky-cta{
    position:fixed;
    left:12px;
    right:12px;
    bottom:12px;
    z-index:120;
    display:block;
    transform:translateY(120%);
    opacity:0;
    transition:transform .35s ease, opacity .35s ease;
  }

  .mobile-sticky-cta.show{
    transform:translateY(0);
    opacity:1;
  }

  .mobile-sticky-btn{
    width:100%;
    min-height:64px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    border-radius:999px;
    background:linear-gradient(135deg, #27D36F, #6BF5A7);
    color:#03140B;
    border:1px solid rgba(255,255,255,.35);
    box-shadow:0 18px 48px rgba(39,211,111,.35), 0 10px 40px rgba(0,0,0,.38);
    font-family:'Inter',sans-serif;
  }

  .mobile-sticky-icon{
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.22);
    font-size:22px;
  }

  .mobile-sticky-btn strong{
    display:block;
    font-size:15px;
    line-height:1.1;
    font-weight:800;
  }

  .mobile-sticky-btn small{
    display:block;
    margin-top:2px;
    font-size:11px;
    opacity:.72;
  }

  .wa-float{
    display:none;
  }

  .nav-links{
    position:fixed;
    top:74px;
    left:12px;
    right:12px;
    min-height:auto;
    padding:16px;
    border-radius:24px;
    background:rgba(5,11,20,.92);
    border:1px solid rgba(116,184,255,.24);
    box-shadow:0 30px 90px rgba(0,0,0,.55), 0 0 60px rgba(47,143,255,.10);
    backdrop-filter:blur(22px);
    transform:translateY(-10px) scale(.98);
    opacity:0;
    pointer-events:none;
    transition:opacity .25s ease, transform .25s ease;
  }

  .nav-links.open{
    display:flex;
    opacity:1;
    pointer-events:auto;
    transform:translateY(0) scale(1);
  }

  .nav-links a{
    min-height:48px;
    display:flex;
    align-items:center;
    padding:14px 16px;
    border-radius:16px;
    color:var(--ink);
    font-size:15px;
    background:rgba(255,255,255,.025);
    border:1px solid transparent;
  }

  .nav-links a + a{
    margin-top:8px;
  }

  .nav-links a:hover{
    background:rgba(47,143,255,.10);
    border-color:rgba(116,184,255,.18);
  }

  .hero{
    padding:88px 0 48px;
  }

  .hero-grid{
    gap:22px;
  }

  .hero-photo{
    max-width:286px;
  }

  .hero-photo .frame{
    padding:6px;
    border-radius:18px;
    box-shadow:0 18px 55px rgba(0,0,0,.35), 0 0 44px rgba(47,143,255,.18);
  }

  .hero-photo img{
    aspect-ratio:4/4.35;
    border-radius:14px;
  }

  .badge-float{
    padding:8px 11px;
    font-size:11px;
    top:8px;
    right:6px;
  }

  .hero-photo .tag{
    left:14px;
    bottom:14px;
    padding:8px 12px;
    font-size:10px;
  }

  .hero h1{
    margin:16px 0 16px;
    font-size:34px;
    line-height:.98;
  }

  .lead{
    margin-bottom:22px;
    font-size:15px;
    line-height:1.55;
  }

  .hero-actions{
    margin-bottom:16px;
  }

  .hero-actions .btn{
    min-height:50px;
    padding:13px 18px;
  }

  .hero-note{
    font-size:12px;
  }

  .trust-row{
    margin-top:22px;
    gap:8px;
  }

  .trust-row div{
    padding:12px 14px;
    border-radius:16px;
  }

  .trust-row strong{
    font-size:14px;
  }

  .trust-row span{
    font-size:11px;
  }

  section{
    padding:62px 0;
  }

  .section-head{
    margin-bottom:26px;
  }

  .section-head h2,
  .objection-grid h2,
  .sobre-text h2{
    margin-top:14px;
    font-size:28px;
    line-height:1.02;
  }

  .section-head p,
  .sobre-text p,
  .tl-body p,
  .faq-a p{
    font-size:14.5px;
    line-height:1.58;
  }

  .objection-grid,
  .sobre-grid{
    gap:28px;
  }

  .x-list{
    gap:10px;
  }

  .x-list li{
    padding:13px 14px;
    border-radius:14px;
    font-size:14px;
  }

  .objection-note{
    padding:17px 18px;
    border-radius:14px;
    font-size:14px;
  }

  .sobre-photo{
    max-width:285px;
    margin:0 auto;
    padding:7px;
    border-radius:18px;
  }

  .sobre-text p.quote{
    margin-top:22px;
    padding-top:18px;
    font-size:19px;
  }

  .quem-grid,
  .ben-grid,
  .dif-grid,
  .compare-grid{
    gap:10px;
  }

  .quem-item{
    min-height:72px;
    padding:16px 16px;
    border-radius:16px;
    align-items:center;
    font-size:14.5px;
  }

  .ben-item{
    min-height:auto;
    padding:17px 16px;
    border-radius:16px;
    display:grid;
    grid-template-columns:42px 1fr;
    align-items:center;
    gap:12px;
    font-size:14.5px;
  }

  .ben-item .icon{
    width:38px;
    height:38px;
    margin-bottom:0;
    border-radius:14px;
    font-size:19px;
  }

  .compare-col{
    padding:22px 18px;
    border-radius:16px;
  }

  .compare-col h3{
    margin-bottom:16px;
    font-size:14px;
  }

  .compare-col ul{
    gap:10px;
  }

  .compare-col li{
    font-size:14.5px;
  }

  .dif-card{
    min-height:96px;
    padding:22px 18px;
    border-radius:16px;
  }

  .dif-card p{
    font-size:18px;
  }

  .timeline{
    margin-left:2px;
    padding-left:22px;
  }

  .timeline::before{
    left:7px;
  }

  .tl-item{
    grid-template-columns:44px 1fr;
    gap:14px;
    padding:22px 0;
  }

  .tl-item::before{
    left:-22px;
    top:30px;
    width:13px;
    height:13px;
    border-width:3px;
  }

  .tl-num{
    font-size:26px;
  }

  .tl-body h3{
    font-size:18px;
  }

  .testimonial-track{
    min-height:190px;
  }

  .dep-card{
    padding:24px 18px;
    border-radius:16px;
  }

  .stars{
    margin-bottom:12px;
    letter-spacing:3px;
    font-size:13px;
  }

  .play{
    width:46px;
    height:46px;
    margin-bottom:12px;
  }

  .faq{
    padding:4px 14px;
    border-radius:16px;
  }

  .faq-q{
    min-height:62px;
    padding:17px 0;
    font-size:15.5px;
  }

  .faq-q .ic{
    width:28px;
    height:28px;
  }

  .cta-final{
    padding:74px 0 84px;
  }

  .cta-final h2{
    margin:18px auto 14px;
    font-size:32px;
  }

  .cta-final p.sub{
    margin-bottom:26px;
    font-size:15px;
  }

  .btn-big{
    width:100%;
    min-height:54px;
  }

  footer{
    padding:48px 0 112px;
  }
}

@media (max-width:390px){
  .hero h1{
    font-size:31px;
  }

  .hero-photo{
    max-width:258px;
  }

  .nav-cta .icon-btn{
    display:none;
  }

  .section-head h2,
  .objection-grid h2,
  .sobre-text h2{
    font-size:26px;
  }
}

/* celular: menos animação pesada, mais leve */
@media (max-width:760px){
  .hero-bg-orb,
  .orb-one,
  .orb-two{
    animation:none;
    opacity:.45;
  }

  .cursor-dot,
  .cursor-ring{
    display:none!important;
  }

  .reveal{
    transform:translateY(18px);
    transition:opacity .45s ease, transform .45s ease;
  }

  .quem-item:hover,
  .ben-item:hover,
  .dif-card:hover,
  .compare-col:hover,
  .dep-card:hover{
    transform:none;
  }

  .btn:hover{
    transform:none;
  }

  .mobile-sticky-btn:active,
  .btn:active,
  .icon-btn:active,
  .menu-toggle:active{
    transform:scale(.97);
  }
}


/* ===== V4 LEAD UPGRADE ===== */
.lead-form-section{
  padding-top:92px;
  padding-bottom:92px;
}

.lead-form-grid{
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:64px;
  align-items:center;
}

.lead-form-card{
  position:relative;
  padding:30px;
  border:1px solid rgba(116,184,255,.22);
  border-radius:26px;
  background:
    radial-gradient(380px 220px at 100% 0%, rgba(47,143,255,.16), transparent 60%),
    rgba(11,26,44,.74);
  backdrop-filter:blur(14px);
  box-shadow:0 28px 90px rgba(0,0,0,.30), 0 0 60px rgba(47,143,255,.12);
}

.goal-options{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:22px;
}

.goal-option{
  min-height:48px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(116,184,255,.16);
  background:rgba(255,255,255,.035);
  color:var(--ink-dim);
  font-family:'Inter',sans-serif;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  transition:background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}

.goal-option:hover,
.goal-option.active{
  background:rgba(47,143,255,.13);
  border-color:rgba(95,184,255,.38);
  color:var(--ink);
}

.lead-label{
  display:block;
  margin:16px 0 8px;
  color:var(--ink);
  font-size:13px;
  font-weight:700;
}

.lead-input{
  width:100%;
  min-height:52px;
  padding:0 16px;
  border-radius:16px;
  border:1px solid rgba(116,184,255,.18);
  background:rgba(3,10,18,.58);
  color:var(--ink);
  outline:none;
  font-family:'Inter',sans-serif;
  font-size:14px;
}

.lead-input:focus{
  border-color:rgba(95,184,255,.55);
  box-shadow:0 0 0 4px rgba(47,143,255,.10);
}

.lead-input::placeholder{
  color:rgba(169,186,209,.62);
}

.btn-lead{
  width:100%;
  margin-top:22px;
}

.lead-small{
  display:block;
  margin-top:12px;
  color:var(--ink-dim);
  text-align:center;
  font-size:12px;
}

.plans-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.plan-card{
  position:relative;
  min-height:360px;
  display:flex;
  flex-direction:column;
  padding:28px;
  border:1px solid rgba(116,184,255,.20);
  border-radius:24px;
  background:
    linear-gradient(145deg, rgba(95,184,255,.08), transparent 45%),
    rgba(11,26,44,.70);
  backdrop-filter:blur(12px);
  box-shadow:0 24px 76px rgba(0,0,0,.22);
  overflow:hidden;
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.plan-card:hover{
  transform:translateY(-7px);
  border-color:rgba(95,184,255,.44);
  box-shadow:0 32px 90px rgba(0,0,0,.30), 0 0 58px rgba(47,143,255,.14);
}

.plan-card.featured{
  border-color:rgba(95,184,255,.48);
  box-shadow:0 32px 90px rgba(0,0,0,.28), 0 0 74px rgba(47,143,255,.20);
}

.plan-badge{
  width:max-content;
  margin-bottom:20px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(47,143,255,.11);
  border:1px solid rgba(95,184,255,.24);
  color:var(--blue-2);
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.plan-card h3{
  font-size:25px;
  margin-bottom:14px;
}

.plan-card p{
  color:var(--ink-dim);
  font-size:14.5px;
  line-height:1.6;
  margin-bottom:20px;
}

.plan-card ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
  color:var(--ink-dim);
  font-size:14px;
  margin-bottom:24px;
}

.plan-link{
  margin-top:auto;
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(47,143,255,.10);
  border:1px solid rgba(95,184,255,.28);
  color:var(--ink);
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:12px;
  font-weight:700;
  transition:background .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}

.plan-link:hover{
  transform:translateY(-2px);
  background:linear-gradient(135deg, var(--blue), var(--blue-2));
  border-color:transparent;
  color:#03101f;
}

@media (max-width:980px){
  .lead-form-grid,
  .plans-grid{
    grid-template-columns:1fr;
  }

  .plan-card{
    min-height:auto;
  }
}

@media (max-width:760px){
  .lead-form-section{
    padding-top:62px;
    padding-bottom:62px;
  }

  .lead-form-grid{
    gap:24px;
  }

  .lead-form-card{
    padding:18px;
    border-radius:18px;
  }

  .goal-options{
    grid-template-columns:1fr;
    gap:8px;
    margin-bottom:16px;
  }

  .goal-option{
    min-height:44px;
    border-radius:14px;
    font-size:13px;
  }

  .lead-input{
    min-height:50px;
    border-radius:14px;
  }

  .plans-grid{
    gap:10px;
  }

  .plan-card{
    padding:22px 18px;
    border-radius:18px;
  }

  .plan-card h3{
    font-size:22px;
  }

  .plan-link{
    min-height:46px;
  }
}


/* ===== V5 PRODUÇÃO: acessibilidade e refinamento ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible{
  outline:3px solid rgba(95,184,255,.75);
  outline-offset:3px;
}

@media (max-width:760px){
  *{
    -webkit-tap-highlight-color: rgba(95,184,255,.18);
  }
}

/* ===== AJUSTES LOGO OFICIAL + CREDENCIAIS ===== */
.brand.brand-logo{
  gap:0;
  min-width:58px;
  flex-shrink:0;
}

.brand-logo-img{
  display:block;
  width:58px;
  height:auto;
  max-height:52px;
  object-fit:contain;
  object-position:left center;
  filter:drop-shadow(0 0 18px rgba(95,184,255,.20));
}

.trust-row{
  grid-template-columns:repeat(4, minmax(0, 1fr));
  max-width:690px;
}

.trust-row .trust-card-credential{
  border-color:rgba(95,184,255,.32);
  background:
    linear-gradient(145deg, rgba(95,184,255,.12), transparent 52%),
    rgba(255,255,255,.04);
}

.trust-row .trust-card-credential strong{
  color:var(--blue-2);
}

.sobre-credential{
  padding:18px 20px;
  border:1px solid rgba(95,184,255,.24);
  border-left:3px solid var(--blue);
  border-radius:18px;
  background:rgba(47,143,255,.07);
  color:var(--ink)!important;
  box-shadow:0 18px 50px rgba(0,0,0,.16);
}

.footer-brand-logo{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
}

.footer-logo{
  display:block;
  width:78px;
  height:auto;
  max-height:70px;
  object-fit:contain;
  object-position:left center;
  filter:drop-shadow(0 0 18px rgba(95,184,255,.16));
}

.footer-brand-logo small{
  margin-top:0;
}

@media (max-width:980px){
  .brand.brand-logo{
    min-width:54px;
  }

  .brand-logo-img{
    width:54px;
    max-height:48px;
  }

  .trust-row{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    max-width:100%;
  }
}

@media (max-width:760px){
  .brand.brand-logo{
    min-width:50px;
  }

  .brand-logo-img{
    width:50px;
    max-height:45px;
  }

  .trust-row{
    grid-template-columns:1fr;
  }

  .sobre-credential{
    padding:15px 16px;
    border-radius:15px;
  }

  .footer-logo{
    width:72px;
    max-height:64px;
  }
}

@media (max-width:390px){
  .brand.brand-logo{
    min-width:46px;
  }

  .brand-logo-img{
    width:46px;
    max-height:42px;
  }
}


/* ===== RODAPÉ: CARDS SOCIAIS NO ESTILO ESPAÇO SAÚDE ===== */
.footer-socials{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  width:min(100%, 470px);
}

.footer-social-link{
  position:relative;
  display:flex;
  align-items:center;
  gap:12px;
  min-height:72px;
  overflow:hidden;
  border:1px solid rgba(116,184,255,.18);
  border-radius:22px;
  padding:12px;
  background:rgba(255,255,255,.045);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 18px 48px rgba(0,0,0,.16);
  transition:transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.footer-social-link::after{
  content:"";
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .22s ease;
  pointer-events:none;
}

.footer-social-link:hover{
  transform:translateY(-3px);
  border-color:rgba(116,184,255,.34);
  background:rgba(255,255,255,.075);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.10), 0 24px 62px rgba(0,0,0,.22);
}

.footer-social-link:hover::after{
  opacity:.16;
}

.footer-social-instagram::after{
  background:radial-gradient(circle at 25% 100%, #feda75 0 20%, #fa7e1e 34%, #d62976 58%, #962fbf 76%, #4f5bd5 100%);
}

.footer-social-whatsapp::after{
  background:linear-gradient(135deg, #25d366, #128c7e);
}

.footer-social-icon{
  position:relative;
  z-index:1;
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  border-radius:16px;
  flex:0 0 auto;
  box-shadow:0 14px 28px rgba(0,0,0,.24);
}

.footer-social-instagram .footer-social-icon{
  background:radial-gradient(circle at 30% 105%, #feda75 0 18%, #fa7e1e 34%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
}

.footer-social-whatsapp .footer-social-icon{
  background:linear-gradient(135deg, #25d366, #128c7e);
}

.footer-social-icon svg{
  width:23px;
  height:23px;
  fill:#fff;
}

.footer-social-copy{
  position:relative;
  z-index:1;
  display:grid;
  gap:3px;
  line-height:1.05;
}

.footer-social-copy strong{
  color:var(--ink);
  font-weight:800;
}

.footer-social-copy small{
  color:var(--ink-dim);
  font-size:12px;
  font-weight:700;
}

@media (max-width:760px){
  .footer-socials{
    width:100%;
    grid-template-columns:1fr;
  }

  .footer-social-link{
    min-height:66px;
  }
}
