/* ===========================================================
   Inove Clean — Landing Page de Reativação
   =========================================================== */

:root{
  --navy: #0E2A45;
  --navy-dark: #081826;
  --blue: #1D7DA3;
  --blue-light: #eaf4f8;
  --cyan: #0DC0E0;
  --orange: #EF7532;
  --orange-dark: #d9631f;
  --white: #ffffff;
  --ink: #16232f;
  --ink-soft: #4a5a68;
  --bg-alt: #f4f7f9;
  --line: #e3e9ed;
  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 2px 10px rgba(14,42,69,.06);
  --shadow-md: 0 10px 30px rgba(14,42,69,.10);
  --shadow-lg: 0 20px 50px rgba(14,42,69,.16);
  --container: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:'Poppins','Inter',sans-serif;
  color:var(--navy);
  margin:0 0 .5em;
  line-height:1.15;
  letter-spacing:-0.01em;
}
p{ margin:0 0 1em; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; }

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}
section{ position:relative; }
.section-pad{ padding:88px 0; }
@media (max-width:768px){
  .section-pad{ padding:56px 0; }
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--orange);
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:22px; height:2px;
  background:var(--orange);
  display:inline-block;
}
.section-head{
  max-width:680px;
  margin:0 0 48px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(28px,3.6vw,40px); }
.section-head p{ color:var(--ink-soft); font-size:17px; margin:0; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:16px 30px;
  border-radius:100px;
  font-weight:700;
  font-size:15.5px;
  border:none;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn:active{ transform:scale(.97); }
.btn-whatsapp{
  background:var(--whatsapp);
  color:#fff;
  box-shadow:0 8px 20px rgba(37,211,102,.35);
}
.btn-whatsapp:hover{ background:var(--whatsapp-dark); }
.btn-whatsapp svg{ width:20px; height:20px; flex:none; }
.btn-outline{
  background:transparent;
  color:var(--navy);
  border:1.5px solid var(--line);
}
.btn-outline:hover{ border-color:var(--navy); background:var(--bg-alt); }
.btn-block{ width:100%; }
.btn-lg{ padding:19px 38px; font-size:17px; }
@media (max-width:480px){
  .btn{ white-space:normal; text-align:center; }
  .btn-lg{ padding:17px 26px; font-size:15.5px; }
  .hero-actions .btn, .final-cta .btn, .reactivate .btn{ width:100%; }
}

/* mini inline cta link */
.cta-inline{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--whatsapp-dark);
  font-weight:700;
  font-size:15px;
  border-bottom:2px solid transparent;
  transition:border-color .15s ease;
}
.cta-inline svg{ width:17px; height:17px; }
.cta-inline:hover{ border-color:var(--whatsapp-dark); }

/* ===================== HEADER ===================== */
header.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:78px;
}
.logo img{ height:34px; width:auto; }
.header-inner .btn{ padding:12px 22px; font-size:14.5px; }
.header-inner .btn span.short{ display:none; }
@media (max-width:560px){
  .header-inner .btn span.long{ display:none; }
  .header-inner .btn span.short{ display:inline; }
  .header-inner .btn{ padding:12px 16px; }
  .logo img{ height:28px; }
  .header-inner{ height:64px; }
}

/* ===================== HERO ===================== */
.hero{
  background:linear-gradient(180deg, var(--navy) 0%, #123350 100%);
  color:#fff;
  overflow:hidden;
  padding:64px 0 90px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}
@media (max-width:920px){
  .hero-grid{ grid-template-columns:1fr; gap:40px; }
  .hero{ padding:44px 0 56px; }
}
.hero-tag{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  padding:7px 16px 7px 12px; border-radius:100px;
  font-size:13px; font-weight:600; color:#cfe4f0;
  margin-bottom:22px;
}
.hero-tag .dot{ width:8px; height:8px; border-radius:50%; background:var(--orange); }
.hero h1{
  color:#fff;
  font-size:clamp(32px,4.6vw,54px);
  font-weight:700;
  margin-bottom:22px;
}
.hero p.lead{
  font-size:18px;
  color:#d3e0e9;
  max-width:520px;
  margin-bottom:34px;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; }
.hero .btn-outline{
  background:transparent; color:#fff; border-color:rgba(255,255,255,.35);
}
.hero .btn-outline:hover{ background:rgba(255,255,255,.08); border-color:#fff; }

.hero-media{ position:relative; }
.hero-media .frame{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  border:6px solid rgba(255,255,255,.08);
}
.hero-media img{ width:100%; height:100%; object-fit:cover; aspect-ratio:4/5; }
.hero-badge{
  position:absolute; left:-18px; bottom:-18px;
  background:#fff; color:var(--navy);
  border-radius:16px; padding:16px 20px;
  box-shadow:var(--shadow-md);
  display:flex; align-items:center; gap:12px;
  max-width:230px;
}
@media (max-width:560px){
  .hero-badge{ left:10px; bottom:-16px; padding:12px 16px; }
}
.hero-badge .num{ font-family:'Poppins',sans-serif; font-size:26px; font-weight:700; color:var(--orange); line-height:1; }
.hero-badge .txt{ font-size:12.5px; font-weight:600; color:var(--ink-soft); line-height:1.3; }

/* ===================== TRUST INDICATORS ===================== */
.trust{
  margin-top:-56px;
  position:relative;
  z-index:10;
}
.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
@media (max-width:920px){ .trust-grid{ grid-template-columns:repeat(2,1fr); } }
.trust-card{
  background:#fff;
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-md);
  padding:26px 22px;
  display:flex; flex-direction:column; gap:12px;
}
.trust-card .ic{
  width:46px; height:46px;
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background:var(--blue-light);
  color:var(--blue);
}
.trust-card .ic svg{ width:24px; height:24px; }
.trust-card strong{ font-size:15.5px; color:var(--navy); font-weight:700; }
.trust-card span{ font-size:13.5px; color:var(--ink-soft); }

/* ===================== RESULTADOS ===================== */
.results-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
@media (max-width:920px){ .results-grid{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .results-grid{ grid-template-columns:1fr; } }
.result-card{
  background:#fff;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--line);
  transition:box-shadow .2s ease, transform .2s ease;
}
.result-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-3px); }
.result-card .ph{ aspect-ratio:1/1; overflow:hidden; }
.result-card .ph img{ width:100%; height:100%; object-fit:cover; }
.result-card .cap{ padding:16px 18px 20px; }
.result-card .cap strong{ display:block; font-size:15px; color:var(--navy); margin-bottom:4px; }
.result-card .cap span{ font-size:13px; color:var(--ink-soft); }

/* ===================== EQUIPE ===================== */
.team-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
}
.team-grid .team-item:nth-child(1){ grid-column:span 2; grid-row:span 2; }
.team-grid .team-item:nth-child(4){ grid-column:span 2; grid-row:span 2; }
@media (max-width:920px){
  .team-grid{ grid-template-columns:repeat(4,1fr); }
  .team-grid .team-item:nth-child(1){ grid-column:span 2; grid-row:span 2; }
  .team-grid .team-item:nth-child(4){ grid-column:span 2; grid-row:span 1; }
}
@media (max-width:640px){
  .team-grid{ grid-template-columns:repeat(2,1fr); }
  .team-grid .team-item:nth-child(1){ grid-column:span 2; grid-row:span 1; }
  .team-grid .team-item:nth-child(4){ grid-column:span 2; grid-row:span 1; }
}
.team-item{
  position:relative;
  border-radius:var(--radius-md);
  overflow:hidden;
  background:var(--bg-alt);
}
.team-item img{ width:100%; height:100%; object-fit:cover; display:block; }
.team-item .tag{
  position:absolute; left:10px; bottom:10px;
  background:rgba(14,42,69,.82);
  color:#fff; font-size:12px; font-weight:600;
  padding:6px 11px; border-radius:100px;
  backdrop-filter:blur(4px);
}

/* ===================== VIDEOS ===================== */
.video-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
@media (max-width:920px){ .video-grid{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .video-grid{ grid-template-columns:1fr; } }
.video-card{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:#000;
  aspect-ratio:9/13;
  box-shadow:var(--shadow-sm);
  cursor:pointer;
}
.video-card video{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
}
.video-card .cover{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  transition:opacity .25s ease;
}
.video-card .veil{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(8,24,38,0) 40%, rgba(8,24,38,.75) 100%);
}
.video-card .play-btn{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
}
.video-card .play-btn span{
  width:60px; height:60px; border-radius:50%;
  background:rgba(255,255,255,.94);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 22px rgba(0,0,0,.35);
  transition:transform .15s ease;
}
.video-card:hover .play-btn span{ transform:scale(1.08); }
.video-card .play-btn svg{ width:22px; height:22px; margin-left:3px; color:var(--navy); }
.video-card .label{
  position:absolute; left:14px; bottom:14px; right:14px;
  color:#fff; font-weight:700; font-size:14.5px;
  text-shadow:0 1px 6px rgba(0,0,0,.4);
}
.video-card.is-playing .cover,
.video-card.is-playing .veil,
.video-card.is-playing .play-btn,
.video-card.is-playing .label{ opacity:0; pointer-events:none; }
.video-card video{ opacity:0; pointer-events:none; }
.video-card.is-playing video{ opacity:1; pointer-events:auto; }

/* ===================== SERVIÇOS ===================== */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
@media (max-width:920px){ .services-grid{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .services-grid{ grid-template-columns:1fr; } }
.service-card{
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  display:flex; flex-direction:column;
  transition:box-shadow .2s ease, transform .2s ease;
}
.service-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-4px); }
.service-card .ph{ aspect-ratio:4/3; overflow:hidden; }
.service-card .ph img{ width:100%; height:100%; object-fit:cover; }
.service-card .body{ padding:22px 22px 26px; display:flex; flex-direction:column; gap:10px; flex:1; }
.service-card h3{ font-size:18px; margin:0; }
.service-card p{ font-size:14.5px; color:var(--ink-soft); margin:0 0 6px; flex:1; }

/* ===================== IMPERMEABILIZAÇÃO ===================== */
.imper-section{
  background:var(--navy);
  color:#fff;
}
.imper-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
@media (max-width:920px){ .imper-grid{ grid-template-columns:1fr; gap:36px; } }
.imper-section .eyebrow{ color:var(--cyan); }
.imper-section .eyebrow::before{ background:var(--cyan); }
.imper-section h2{ color:#fff; font-size:clamp(26px,3.4vw,36px); }
.imper-section p.lead{ color:#c9dbe6; font-size:17px; }
.benefit-list{ display:grid; gap:14px; margin:26px 0 32px; }
.benefit-list li{
  display:flex; align-items:flex-start; gap:12px;
  font-size:15.5px; color:#e3edf3;
}
.benefit-list .ic{
  flex:none; width:26px; height:26px; border-radius:50%;
  background:rgba(13,192,224,.16);
  display:flex; align-items:center; justify-content:center;
  color:var(--cyan);
  margin-top:1px;
}
.benefit-list .ic svg{ width:14px; height:14px; }
.imper-video{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  aspect-ratio:9/13;
  background:#000;
  cursor:pointer;
}
.imper-video video, .imper-video .cover{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
}
.imper-video video{ opacity:0; pointer-events:none; }
.imper-video.is-playing video{ opacity:1; pointer-events:auto; }
.imper-video.is-playing .cover, .imper-video.is-playing .veil, .imper-video.is-playing .play-btn, .imper-video.is-playing .label{ opacity:0; pointer-events:none;}
.imper-video .veil{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(8,24,38,0) 45%, rgba(8,24,38,.8) 100%); }
.imper-video .play-btn{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.imper-video .play-btn span{
  width:64px; height:64px; border-radius:50%; background:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow:0 8px 24px rgba(0,0,0,.4);
}
.imper-video .play-btn svg{ width:24px; height:24px; margin-left:3px; color:var(--navy); }
.imper-video .label{ position:absolute; left:16px; bottom:16px; right:16px; color:#fff; font-weight:700; font-size:15px; text-shadow:0 1px 6px rgba(0,0,0,.5); }

/* ===================== ATENDIMENTO ===================== */
.attend-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
@media (max-width:860px){ .attend-grid{ grid-template-columns:1fr; } }
.attend-card{
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
}
.attend-card .ph{ aspect-ratio:16/10; overflow:hidden; }
.attend-card .ph img{ width:100%; height:100%; object-fit:cover; }
.attend-card .body{ padding:22px; }
.attend-card .kicker{ font-size:12.5px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--orange); margin-bottom:6px; display:block; }
.attend-card h3{ font-size:19px; margin-bottom:8px; }
.attend-card p{ font-size:14.5px; color:var(--ink-soft); margin:0; }

/* ===================== REATIVAÇÃO EMOCIONAL ===================== */
.reactivate{
  background:linear-gradient(135deg, var(--blue-light) 0%, #fff 60%);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.reactivate-inner{
  max-width:760px; margin:0 auto; text-align:center;
}
.reactivate h2{ font-size:clamp(26px,3.6vw,38px); }
.reactivate p{ font-size:17px; color:var(--ink-soft); margin-bottom:30px; }

/* ===================== MINI CTA STRIP ===================== */
.mini-cta-strip{
  background:var(--bg-alt);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.mini-cta-inner{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
  gap:14px 34px;
  padding:26px 0;
}
.mini-cta-inner .lbl{
  font-weight:700; color:var(--navy); font-size:15px; margin-right:6px;
}

/* ===================== FINAL CTA ===================== */
.final-cta{
  background:radial-gradient(120% 160% at 20% 0%, #123350 0%, var(--navy-dark) 70%);
  color:#fff;
  text-align:center;
}
.final-cta h2{ color:#fff; font-size:clamp(28px,4vw,42px); max-width:760px; margin:0 auto 18px; }
.final-cta p{ color:#cfe0ea; font-size:17.5px; max-width:560px; margin:0 auto 34px; }

/* ===================== FOOTER ===================== */
footer.site-footer{
  background:var(--navy-dark);
  color:#9fb4c2;
  padding:44px 0 110px;
  font-size:13.5px;
}
@media (min-width:769px){ footer.site-footer{ padding-bottom:44px; } }
.footer-inner{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:20px;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:26px;
}
.footer-top{
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:24px;
  padding-bottom:26px;
}
.footer-logo img{ height:30px; margin-bottom:12px; filter:brightness(0) invert(1); opacity:.92; }
.footer-top p{ max-width:340px; color:#8fa5b5; margin:0; }
.footer-contact{ display:flex; flex-direction:column; gap:8px; }
.footer-contact a{ color:#cfe0ea; font-weight:600; }
.footer-contact a:hover{ color:#fff; }

/* ===================== STICKY MOBILE BAR ===================== */
.sticky-mobile-bar{
  display:none;
  position:fixed; left:0; right:0; bottom:0; z-index:80;
  padding:10px 14px calc(10px + env(safe-area-inset-bottom));
  background:rgba(8,24,38,.92);
  backdrop-filter:blur(8px);
  box-shadow:0 -6px 24px rgba(0,0,0,.18);
}
@media (max-width:768px){
  .sticky-mobile-bar{ display:block; }
  body{ padding-bottom:0; }
}
.sticky-mobile-bar .btn{ width:100%; padding:14px 20px; font-size:15px; }

/* ===================== UTIL / REVEAL ===================== */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }

.badge-note{
  font-size:12.5px; color:var(--ink-soft); text-align:center; margin-top:18px;
}
