:root{
  --bg:#06120c;
  --bg-soft:#0b1b13;
  --fg:#f3fbf7;
  --muted:#a8beb3;
  --brand:#17db7b;
  --brand-2:#0f9f59;
  --stroke:#274737;
  --card:#102016;
  --shadow:0 20px 45px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--fg);
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  line-height:1.5;
}

a{color:inherit}
.container{max-width:1180px;margin:0 auto;padding:0 24px}

h1,h2,h3{margin:0 0 14px;line-height:1.12}
h1{font-size:clamp(42px,6vw,86px);letter-spacing:-.03em;max-width:720px}
h2{font-size:clamp(30px,3.2vw,50px);letter-spacing:-.02em}
h3{font-size:22px}
p{margin:0 0 14px;color:var(--muted)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  padding:11px 20px;
  border-radius:14px;
  border:1px solid var(--stroke);
  text-decoration:none;
  transition:.2s transform,.2s background,.2s border-color;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:linear-gradient(90deg,var(--brand),var(--brand-2));
  color:#06120c;
  border-color:transparent;
  font-weight:700;
}
.btn-outline{
  background:rgba(255,255,255,.02);
  color:var(--fg);
}
.btn-outline-dark{
  background:#ffffff;
  color:#1f2a25;
  border:1px solid #d6e2db;
}

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:linear-gradient(90deg,#ffffff 0%, #f6fffa 42%, #e0ffe9 100%);
  border-bottom:3px solid #d4af37;
  box-shadow:
    inset 0 0 0 1px rgba(212,175,55,.75),
    0 2px 0 rgba(119, 88, 27, .30),
    0 8px 24px rgba(0,0,0,.08);
  z-index:50;
}
.header-inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.header-nav{display:flex;gap:28px}
.header-nav a{
  color:#2f3f37;
  text-decoration:none;
  font-weight:600;
}
.header-cta{display:flex;gap:10px}
.header-cta .btn-primary{color:#072015}

.main-content{padding-top:78px}

.hero-header{
  position:relative;
  overflow:hidden;
  min-height:84vh;
  border-bottom:1px solid #123122;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:url("../img/hero_cdvpay_honeycomb.png") center/cover no-repeat;
  background-position:center center;
  background-size:cover;
  filter:none;
}
body.is-mobile .hero-bg{
  background-image:url("../img/hero_mobile_cdvpay.png");
  background-position:center center;
  background-size:cover;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 85% 50%, rgba(23,219,123,.05) 0%, rgba(23,219,123,0) 60%),
    linear-gradient(90deg, rgba(6,18,12,.50) 0%, rgba(6,18,12,.20) 52%, rgba(6,18,12,.44) 100%);
}

.topbar,
.hero-content{position:relative;z-index:2}
.brand-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:190px;
  height:58px;
  overflow:hidden;
  text-decoration:none;
}
.brand-logo{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  transform:scale(1.15);
  transform-origin:center;
  filter:drop-shadow(0 2px 6px rgba(0,0,0,.2));
}

.hero-content{
  padding:68px 0 110px;
  padding-right:max(1cm, 24vw);
}
.hero-content h1{
  font-size:clamp(36px,5.1vw,72px);
  max-width:600px;
}
.hero-content h1,
.hero-content .hero-text,
.hero-content .kicker{
  text-shadow:0 2px 12px rgba(0,0,0,.45);
}
.hero-text-desktop{display:inline}
.hero-text-mobile{display:none}
.kicker{
  margin-bottom:18px;
  color:#8ef0bc;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
  font-weight:700;
}
.hero-text{max-width:640px;font-size:20px;color:#d6ebe0;margin-top:10px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}

.section{padding:86px 0}
.section-alt{background:linear-gradient(180deg,rgba(6,18,12,0) 0%,rgba(15,44,28,.52) 100%)}
.section-intro{max-width:860px;margin-bottom:26px}

.cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.card{
  background:linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,.01));
  border:1px solid var(--stroke);
  border-radius:18px;
  padding:22px;
  box-shadow:var(--shadow);
}
.card p{margin:0}

.split{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:start;
}

.feature-list,
.contact-list{padding-left:18px;color:#cce1d7}
.feature-list li,
.contact-list li{margin-bottom:8px}

.highlight-box{
  background:radial-gradient(450px 250px at 0% 0%,rgba(23,219,123,.18),rgba(23,219,123,0)),var(--card);
  border:1px solid var(--stroke);
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow);
}

.contact-form{display:grid;gap:12px}
.contact-form label{display:grid;gap:6px;color:#d7eee2;font-weight:600}
.contact-form input,
.contact-form textarea{
  width:100%;
  border-radius:12px;
  border:1px solid var(--stroke);
  background:#0a1710;
  color:var(--fg);
  padding:12px;
  font:inherit;
}

.site-footer{
  border-top:1px solid #173425;
  background:#0e1210;
  color:#f3f6f4;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1.2fr;
  gap:30px;
  padding:56px 24px 42px;
}
.footer-grid h3{
  font-size:28px;
  margin-bottom:14px;
}
.footer-grid p{color:#c5d0ca}
.footer-grid ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.footer-grid a{
  color:#e4ece8;
  text-decoration:none;
}
.footer-grid a:hover{color:#9be7bd}
.store-links{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.store-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:10px;
  border:1px solid #3b4d43;
  text-decoration:none;
  color:#ffffff;
  background:#161d19;
  white-space:nowrap;
}
.store-icon{
  width:18px;
  height:18px;
  display:inline-block;
  fill:currentColor;
  color:#ffffff;
  flex:0 0 auto;
  opacity:1;
}
.store-icon path{
  fill:currentColor;
}
.footer-bottom{
  border-top:1px solid #212926;
  background:#0a0d0c;
}
.footer-bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  padding:16px 24px;
}
.footer-bottom-right{
  display:flex;
  align-items:center;
  gap:10px;
}
.to-top{text-decoration:none;color:#94efbc;font-weight:600}

.fade-section{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .8s ease,transform .8s ease;
}
.fade-section.visible{opacity:1;transform:translateY(0)}

/* pagina de manutencao */
.bg{position:fixed;inset:0;background:url("../img/cdvBankColmeia.png") center/cover no-repeat;filter:brightness(.7);z-index:-2}
.overlay{position:fixed;inset:0;background:radial-gradient(900px 500px at 50% 20%, rgba(23,219,123,.28) 0%, rgba(6,18,12,.9) 74%);z-index:-1}
main.card{
  position:relative;
  max-width:760px;
  margin:7vh auto;
  padding:28px 24px 24px;
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:22px;
  box-shadow:var(--shadow);
  text-align:center;
}
.logo{height:56px;margin-bottom:12px}
.status{display:flex;align-items:center;justify-content:center;gap:10px}
.pulse{width:10px;height:10px;border-radius:50%;background:var(--brand);box-shadow:0 0 0 rgba(23,219,123,.7);animation:pulse 2s infinite}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(23,219,123,.75)}
  70%{box-shadow:0 0 0 12px rgba(23,219,123,0)}
  100%{box-shadow:0 0 0 0 rgba(23,219,123,0)}
}
.progress{height:10px;border-radius:999px;overflow:hidden;background:rgba(255,255,255,.06);border:1px solid var(--stroke);margin-top:16px}
.bar{height:100%;display:block;background:linear-gradient(90deg,var(--brand),var(--brand-2))}
.cta{margin-top:18px}
.countdown{margin-top:12px}
.foot{margin-top:12px;font-size:14px;color:#c4d9cf}

@media (max-width:1024px){
  .header-nav{display:none}
  .hero-header{min-height:74vh}
  .hero-bg{
    background-size:cover;
    background-position:68% center;
  }
  .hero-content{
    padding-right:max(1cm, 10vw);
  }
  .cards{grid-template-columns:repeat(2,minmax(0,1fr))}
  .split{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:680px){
  .header-cta .btn-outline-dark{display:none}
  .hero-header{min-height:68vh}
  .hero-bg{
    background-size:auto 100%;
    background-position:78% top;
  }
  .hero-overlay{
    background:
      radial-gradient(700px 360px at 78% 28%, rgba(23,219,123,.05) 0%, rgba(23,219,123,0) 58%),
      linear-gradient(90deg, rgba(6,18,12,.64) 0%, rgba(6,18,12,.36) 48%, rgba(6,18,12,.30) 100%);
  }
  .hero-content{
    padding-top:36px;
    padding-right:0;
  }
  .hero-text-desktop{display:none}
  .hero-text-mobile{display:inline}
  .hero-text{font-size:18px}
  .cards{grid-template-columns:1fr}
  .brand-link{width:154px;height:50px}
  .brand-logo{transform:scale(1.08)}
  .footer-grid{grid-template-columns:1fr}
  .store-btn{
    min-height:42px;
    padding:10px 12px;
  }
  .store-icon{
    width:19px;
    height:19px;
  }
}
@media (max-width:440px){
  .hero-bg{
    background-position:82% top;
  }
}
