:root{
  --bg-image: url('images/bghero.jpeg');
  --accent: #0b3b43;
  --muted: #6b7280;
  --white: #ffffff;
  --container: 1100px;
}

*{ box-sizing:border-box; }
html,body{
  height:100%;
  margin:0;
  font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,'Helvetica Neue',Arial;
  color:#222;
}
a{ color:inherit; text-decoration:none; }

/* ===================== NAV ===================== */
.nav{
  position:fixed;
  left:0; right:0; top:0;
  z-index:50;
  background:rgba(8,12,15,0.18);
  backdrop-filter:saturate(120%) blur(6px);
  border-bottom:1px solid rgba(255,255,255,0.03);
}

.nav .inner{
  max-width:var(--container);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 20px;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--white);
  font-weight:600;
}
.logo img{ height:36px; }

.logo div{
  display:flex;
  flex-direction:column;
  align-items:center;
  line-height:1.1;
}
.logo div div:first-child{ font-size:13px; font-weight:600; }
.logo div div:last-child{ font-size:11px; opacity:0.7; }

.menu{
  display:flex;
  gap:26px;
  align-items:center;
}
.menu a{
  color:rgba(255,255,255,0.92);
  font-weight:500;
}

.btn-ghost{
  background:#ffffff;
  color:#0b1720 !important;
  padding:10px 16px;
  border-radius:10px;
  font-weight:600;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 2px 6px rgba(11,23,32,0.08);
  border:0;
}

/* ===== Hambúrguer ===== */
.menu-toggle{
  display:none;
  margin-left:12px;
  width:44px;
  height:40px;
  border:0;
  background:transparent;
  cursor:pointer;
  border-radius:10px;
}
.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  margin:5px auto;
  background:rgba(255,255,255,0.92);
  border-radius:99px;
}

/* painel do menu mobile */
.mobile-menu{
  display:none;
  max-width:var(--container);
  margin:0 auto;
  padding:10px 20px 16px;
  background:rgba(8,12,15,0.55);
  backdrop-filter:saturate(120%) blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.10);
}
.mobile-menu a{
  display:block;
  padding:12px 10px;
  color:rgba(255,255,255,0.92);
  font-weight:600;
  font-size:14px;
  border-radius:10px;
}
.mobile-menu a:hover{ background:rgba(255,255,255,0.06); }
.mobile-menu .mobile-cta{
  margin-top:8px;
  background:#ffffff;
  color:#0b1720;
  text-align:center;
}

/* ===================== HERO ===================== */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  position:relative;
  color:var(--white);
  overflow:hidden;
}

.hero__bg{
  position:absolute;
  inset:0;
  z-index:1;
  background-image:var(--bg-image);
  background-size:cover;
  background-position:center right;
  filter:brightness(0.55) contrast(1.02);
}

.hero__bg::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background:rgba(4,36,66,0.12);
  pointer-events:none;
}

.hero__bg::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:3;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 30%,
    rgba(0,0,0,0.25) 55%,
    rgba(0,0,0,0.0) 70%
  );
  pointer-events:none;
}

.hero .inner{
  position:relative;
  z-index:2;
  max-width:var(--container);
  margin:0 auto;
  padding-top:140px;
  padding-bottom:140px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.hero-logo{
  display:flex;
  flex-direction:column;
  align-items:center;
  margin-bottom:18px;
}
.hero-logo .name{
  font-size:12px;
  letter-spacing:2px;
  font-weight:600;
  opacity:0.9;
}
.hero-logo .role{
  font-size:11px;
  letter-spacing:1.5px;
  opacity:0.6;
}

.hero h1{
  font-size:44px;
  line-height:1.02;
  margin:0 0 18px;
  font-weight:700;
}

.hero p.lead{
  font-size:18px;
  margin:0 0 22px;
  color:rgba(255,255,255,0.92);
}

.links{
  display:flex;
  gap:18px;
  justify-content:center;
}
.links a{
  color:rgba(255,255,255,0.9);
  font-weight:600;
  padding:8px 12px;
  border-radius:8px;
  background:rgba(255,255,255,0.03);
}

/* ===================== CONTENT / CARDS ===================== */
.content{ background:#fff; }

.section{
  max-width:var(--container);
  margin:0 auto;
  padding:48px 24px;
}

.section-head{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:18px;
}
.section-bar{
  width:54px;
  height:3px;
  border-radius:99px;
  background:#0b3b43;
}

.section h2{
  margin:0 0 18px 0;
  font-size:28px;
  font-weight:700;
  color:#111827;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  align-items:stretch;
}

.card{
  background:#ffffff;
  border-radius:14px;
  box-shadow:0 10px 22px rgba(15,23,42,0.06);
  padding:16px;
  min-height:280px;
}
.card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 40px rgba(15,23,42,0.08);
}

.card img{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius:12px;
  display:block;
  margin-bottom:14px;
}

.card h3{
  margin:0 0 8px;
  font-size:15px;
  font-weight:700;
  color:#111827;
}
.card p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}

.section-cta{
  display:flex;
  justify-content:center;
  margin-top:26px;
}

.btn-primary{
  background:#0b1720;
  color:#fff;
  padding:12px 22px;
  border-radius:10px;
  font-weight:600;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* ===================== ABOUT ===================== */
.about{
  position:relative;
  color:#fff;
  overflow:hidden;
}
.about__bg{
  position:absolute;
  inset:0;
  background-image:url('./images/bg-sobremim.jpeg');
  background-size:cover;
  background-position:center;
  filter:brightness(0.55) contrast(1.02);
  z-index:1;
}
.about__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.62) 45%,
    rgba(0,0,0,0.35) 70%,
    rgba(0,0,0,0.10) 100%
  );
}

.about__inner{
  position:relative;
  z-index:2;
  max-width:var(--container);
  margin:0 auto;
  padding:84px 24px;
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  align-items:center;
  gap:38px;
}

.section-head--dark h2{ color:#fff; }

.section-line{
  height:1px;
  width:320px;
  max-width:100%;
  background:rgba(255,255,255,0.15);
  margin-top:12px;
}

.section-bar--gold{ background:#d6b25e; }
.gold{ color:#d6b25e; }

.about__text h3{
  margin:18px 0 12px;
  font-size:18px;
  font-weight:700;
  color:rgba(255,255,255,0.92);
}

.about__text p{
  margin:0 0 12px;
  max-width:620px;
  color:rgba(255,255,255,0.78);
  font-size:14px;
  line-height:1.6;
}

.about__bullets{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px 18px;
  max-width:520px;
}

.bullet{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,0.88);
  font-size:13px;
}

.dot{
  width:22px;
  height:22px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,0.22);
  background:rgba(255,255,255,0.06);
  color:#fff;
  font-weight:700;
  font-size:12px;
}

.about__photo{
  display:flex;
  justify-content:center;
}
.about__photo img{
  width:320px;
  height:320px;
  object-fit:cover;
  border-radius:22px;
  border:6px solid #d6b25e;
  box-shadow:0 18px 50px rgba(0,0,0,0.35);
  background:rgba(255,255,255,0.04);
}

/* ===================== STATS ===================== */
.stats-strip{
  background:#f7f8fb;
  padding:22px 24px 0;
}

.stats-inner{
  max-width:var(--container);
  margin:0 auto;
  display:flex;
  justify-content:center;
}

.statbox{
  width:min(1040px, 100%);
  background:#0b1720;
  border-radius:16px;
  padding:28px 44px;
  display:grid;
  grid-template-columns:1fr auto 1fr auto 1fr;
  align-items:center;
  gap:14px;
  box-shadow:0 16px 36px rgba(0,0,0,0.14);
}

.statitem{ text-align:center; }

.statnum{
  font-weight:800;
  font-size:36px;
  color:#d6b25e;
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:6px;
  line-height:1;
}

.plus{ font-size:18px; transform:translateY(-2px); }

.unit{
  font-size:15px;
  font-weight:700;
  letter-spacing:1px;
  color:rgba(255,255,255,0.92);
  transform:translateY(-2px);
}

.statlabel{
  margin-top:6px;
  font-size:12px;
  color:rgba(255,255,255,0.78);
  letter-spacing:.2px;
}

.statdiv{
  width:1px;
  height:58px;
  background:rgba(255,255,255,0.18);
}

/* ===================== REVIEWS ===================== */
.reviews{ background:#f7f8fb; }

.section-line.light{
  height:1px;
  width:100%;
  max-width:760px;
  background:rgba(17,24,39,0.10);
  margin-top:12px;
}

.reviews .section{ padding-top:34px; }

.reviews-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin:18px 0;
  gap:18px;
}

.google-rate{
  display:flex;
  align-items:center;
  gap:10px;
  color:#111827;
}
.google-score{ font-weight:800; font-size:18px; }
.google-stars{
  color:#d6b25e;
  font-size:17px !important;
  letter-spacing:2.5px;
}
.google-count{ color:#6b7280; font-size:13px; }

.reviews-arrows{ display:flex; gap:10px; }

.arrow{
  width:32px;
  height:32px;
  border-radius:999px;
  border:1px solid rgba(11,23,32,0.16);
  background:#fff;
  color:#0b1720;
  font-size:18px;
  line-height:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.arrow:hover{ border-color:rgba(11,23,32,0.28); }

/* Desktop: grid padrão */
.reviews-slider{ width:100%; }
.reviews-track{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  margin-top:10px;
}

.review-card{
  margin:0 0 14px;
  color:#374151;
  font-size:13px;
  line-height:1.55;
  min-height:250px; /* mantém teu alinhamento do desktop */
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.review-stars{
  color:#d6b25e;
  font-size:17px !important;
  letter-spacing:2.5px;
  margin-bottom:10px;
}

.review-card p{
  margin:0 0 14px;
  color:#374151;
  font-size:13px;
  line-height:1.55;
  flex:1;
  min-height:110px;
}

.review-person{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:16px;
}

.avatar{
  width:34px;
  height:34px;
  border-radius:999px;
  background:rgba(11,23,32,0.08);
  color:#0b1720;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:13px;
}

.who strong{
  display:block;
  font-size:13px;
  color:#111827;
}
.who span{
  display:block;
  font-size:12px;
  color:#6b7280;
}

.review-card--placeholder{ opacity:0.85; }

/* ===================== CONTACT (mantido) ===================== */
.contact{ background:#ffffff; }

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:start;
}

.contact-card{
  background:#0b1720;
  color:#ffffff;
  border-radius:16px;
  padding:22px;
  box-shadow:0 16px 36px rgba(0,0,0,0.12);
}

.contact-card h3{
  margin:0 0 10px;
  font-size:18px;
  font-weight:700;
}

.contact-card p{
  margin:0 0 16px;
  color:rgba(255,255,255,0.78);
  font-size:13px;
  line-height:1.6;
}

.contact-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:10px 0 18px;
}

.btn-outline{
  background:transparent;
  color:#ffffff;
  padding:12px 22px;
  border-radius:10px;
  font-weight:600;
  font-size:14px;
  border:1px solid rgba(255,255,255,0.22);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn-outline:hover{ border-color:rgba(255,255,255,0.40); }

.contact-list{
  display:grid;
  gap:12px;
  margin-top:6px;
}

.contact-item{
  padding-top:10px;
  border-top:1px solid rgba(255,255,255,0.12);
}

.contact-item .label{
  display:block;
  font-size:11px;
  letter-spacing:.2px;
  color:rgba(255,255,255,0.65);
  margin-bottom:4px;
}

.contact-item .value{
  display:block;
  font-size:13px;
  color:rgba(255,255,255,0.92);
}

.contact-form{
  background:#ffffff;
  border-radius:16px;
  padding:22px;
  border:1px solid rgba(15,23,42,0.08);
  box-shadow:0 10px 22px rgba(15,23,42,0.06);
}

/* ===================== CTA HELP ===================== */
.cta-help{
  position:relative;
  height:520px;
  display:grid;
  place-items:center;
  overflow:hidden;
}

.cta-bg{
  position:absolute;
  inset:0;
  background-image:url('./images/bgcomopossoajudar.jpeg');
  background-size:cover;
  background-position:center;
  filter:brightness(0.55) contrast(1.02);
}

.cta-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,20,35,0.55);
}

.cta-inner{
  position:relative;
  z-index:2;
  text-align:center;
  color:#fff;
  padding:24px;
}

.cta-inner h2{
  margin:0 0 14px;
  font-size:34px;
  font-weight:700;
  letter-spacing:-0.4px;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:40px;
  min-width:160px;
  padding:0 18px;
  border-radius:4px;
  background:#ffffff;
  color:#0b1720;
  font-weight:600;
  font-size:13px;
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

.cta-btn:hover{ transform:translateY(-1px); }

/* ===================== FOOTER ===================== */
.site-footer{
  background:#061c2b;
  color:rgba(255,255,255,0.82);
}

.footer-inner{
  max-width:1100px;
  margin:0 auto;
  padding:48px 24px 18px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 0.7fr 1.1fr;
  gap:34px;
  align-items:start;
}

.footer-logo{
  margin-bottom:22px;
  text-align:center;
}

.footer-logo-top{
  color:#d6b25e;
  font-weight:700;
  letter-spacing:1px;
  font-size:12px;
}

.footer-logo-sub{
  margin-top:2px;
  font-size:10px;
  letter-spacing:3px;
  opacity:0.7;
}

.footer-contact{
  display:grid;
  gap:16px;
  margin-top:8px;
}

.fitem{
  display:grid;
  grid-template-columns:30px 1fr;
  gap:12px;
  align-items:start;
}

.fico{
  width:28px;
  height:28px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  font-size:13px;
}

.flabel{
  font-size:12px;
  font-weight:600;
  color:rgba(255,255,255,0.92);
  margin-bottom:4px;
}

.fvalue{
  font-size:12px;
  color:rgba(255,255,255,0.68);
}

.fvalue a{
  color:rgba(255,255,255,0.68);
  text-decoration:underline;
  text-underline-offset:3px;
}

.footer-col h4{
  margin:0 0 14px;
  font-size:12px;
  color:rgba(255,255,255,0.92);
  font-weight:700;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.footer-links a{
  font-size:11px;
  color:rgba(255,255,255,0.65);
}
.footer-links a:hover{ color:rgba(255,255,255,0.92); }

.footer-news{ margin-top:26px; }

.footer-news h5{
  margin:0 0 6px;
  font-size:12px;
  font-weight:700;
  color:rgba(255,255,255,0.92);
}

.footer-news p{
  margin:0 0 12px;
  font-size:10px;
  line-height:1.4;
  color:rgba(255,255,255,0.60);
}

.news-form{
  display:grid;
  grid-template-columns:1fr 140px;
  height:38px;
  border-radius:4px;
  overflow:hidden;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.10);
}

.news-form input{
  border:0;
  outline:0;
  padding:0 12px;
  font-family:inherit;
  font-size:11px;
  color:rgba(255,255,255,0.88);
  background:transparent;
}

.news-form input::placeholder{ color:rgba(255,255,255,0.55); }

.news-form button{
  border:0;
  background:#7a7f86;
  color:#0b1720;
  font-weight:700;
  font-size:11px;
  cursor:pointer;
}
.news-form button:hover{ filter:brightness(1.05); }

.footer-divider{
  margin:26px 0 14px;
  height:1px;
  background:rgba(255,255,255,0.10);
}

.footer-bottom{
  text-align:center;
  font-size:10px;
  letter-spacing:1px;
  color:rgba(255,255,255,0.60);
  padding:10px 0 6px;
}

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float{
  position:fixed;
  right:24px;
  bottom:24px;
  width:70px;
  height:70px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:999999;
  box-shadow:0 14px 28px rgba(0,0,0,0.32);
}

.whatsapp-float img{
  width:48px;
  height:48px;
  object-fit:contain;
}

.whatsapp-float:hover{
  transform:translateY(-2px);
  filter:brightness(1.05);
}

/* ===================== RESPONSIVO ===================== */
@media (max-width:980px){
  .cards{ grid-template-columns:repeat(2,1fr); }
  .hero h1{ font-size:36px; }

  .about__inner{
    grid-template-columns:1fr;
    padding:72px 20px;
  }
  .about__photo{ justify-content:flex-start; }
  .about__photo img{ width:280px; height:280px; }

  .review-grid{ grid-template-columns:1fr; } /* se tu ainda usar review-grid em algum lugar */
  .reviews-top{ flex-direction:column; align-items:flex-start; }
}

@media (max-width:820px){
  .statbox{
    grid-template-columns:1fr;
    gap:12px;
    padding:18px 18px;
  }
  .statdiv{ display:none; }
}

@media (max-width:640px){
  /* HERO */
  .hero h1{ font-size:28px; }
  .cards{ grid-template-columns:1fr; }
  .card img{ height:210px; }
  .hero .inner{ padding:100px 18px 60px; }

  /* NAV: esconde links e CTA do topo, mostra hambúrguer */
  .menu{
    display:flex;
    gap:0;
    align-items:center;
  }
  .menu > a{ display:none; }
  .menu-toggle{ display:inline-block; }
  .menu .btn-ghost{ display:none !important; }
  .nav.is-open .mobile-menu{ display:block; }

  /* REVIEWS: carrossel 1 por vez */
  .reviews-top{
    flex-direction:column;
    align-items:flex-start;
  }

  .reviews-slider{
    overflow:hidden;
    border-radius:18px;
  }

  .reviews-track{
    display:flex !important;
    gap:0 !important;
    transition:transform 280ms ease;
    will-change:transform;
  }

  .reviews-track .review-card{
    flex:0 0 100%;
    max-width:100%;
    background:#ffffff;
    border-radius:18px;
    box-shadow:0 14px 30px rgba(15,23,42,0.10);
    padding:18px;
    margin:0;
    min-height:0;
    display:block; /* neutraliza o layout “forçado” do desktop */
  }

  .reviews-track .review-card p{
    min-height:0 !important;
    flex:unset !important;
  }

  .reviews-arrows{
    width:100%;
    justify-content:center;
    margin-top:10px;
  }

  .arrow{
    width:44px;
    height:44px;
    font-size:20px;
  }

  /* FOOTER */
  .footer-grid{
    grid-template-columns:1fr;
    gap:26px;
  }
  .footer-logo{ text-align:left; }
  .news-form{ grid-template-columns:1fr 120px; }
}
