:root{
  --bg: #f3fbfc;
  --bg2: #e8f5f7;
  --surface: rgba(255,255,255,.72);
  --surface2: rgba(255,255,255,.55);
  --text: #122126;
  --muted: rgba(18,33,38,.68);
  --line: rgba(18,33,38,.12);

  --aqua: #2dd4bf;
  --aqua2:#22c7b3;
  --blue: #60a5fa;
  --vio: #a78bfa;

  --shadow: 0 18px 50px rgba(0,0,0,.10);
  --shadow2: 0 12px 28px rgba(0,0,0,.08);
  --r: 18px;
  --max: 1060px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(45,212,191,.35), transparent 60%),
    radial-gradient(900px 500px at 110% 0%, rgba(96,165,250,.25), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  line-height:1.45;
}

a{color:inherit;text-decoration:none}
.wrap{width:min(var(--max), calc(100% - 32px)); margin:0 auto}
.center{text-align:center}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:30;
  background: rgba(243,251,252,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px}
.brand__dot{
  width:12px; height:12px; border-radius:999px;
  background: linear-gradient(135deg, var(--aqua), var(--blue));
  box-shadow: 0 10px 22px rgba(45,212,191,.25);
}
.brand__name{font-size:18px}
.brand__accent{color:rgba(18,33,38,.6)}
.nav{display:none; align-items:center; gap:18px}
.nav a{font-size:14px; color: var(--muted)}
.nav a:hover{color: var(--text)}
.nav__cta{
  padding:10px 12px;
  border-radius: 12px;
  background: rgba(45,212,191,.14);
  border:1px solid rgba(45,212,191,.25);
  color: rgba(18,33,38,.85) !important;
}

/* Burger */
.burger{
  width:44px; height:44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.55);
  display:grid; place-items:center;
  cursor:pointer;
}
.burger span{
  width:18px; height:2px; background: rgba(18,33,38,.55);
  border-radius:2px; display:block;
}
.burger span:nth-child(2){margin:4px 0}

/* Mobile nav */
.mobile{border-top:1px solid var(--line)}
.mobile__inner{
  padding:12px 0 16px;
  display:grid; gap:10px;
}
.mobile__inner a{
  padding:10px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(18,33,38,.08);
}
.mobile__inner a.btn{border-bottom:0}

/* Hero */
.hero{padding:34px 0 12px; position:relative}
.hero__grid{
  display:grid;
  gap:18px;
  align-items:start;
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.55);
  border:1px solid var(--line);
  box-shadow: var(--shadow2);
  margin:0;
  color: rgba(18,33,38,.78);
  font-weight:700;
  font-size:13px;
}
.pill__dot{
  width:10px;height:10px;border-radius:999px;
  background: linear-gradient(135deg, var(--aqua), var(--vio));
}
.h1{
  margin:12px 0 10px;
  font-size: clamp(34px, 4.7vw, 56px);
  line-height:1.06;
  letter-spacing:-.6px;
}
.grad{
  background: linear-gradient(135deg, var(--aqua), var(--blue), var(--vio));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead{
  margin:0;
  color: var(--muted);
  max-width: 62ch;
  font-size:16px;
}
.hero__cta{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:16px;
}
.hero__badges{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top:16px;
}
.badge{
  padding:10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(18,33,38,.10);
  background: rgba(255,255,255,.45);
  color: rgba(18,33,38,.75);
  font-weight:700;
  font-size:13px;
}

/* Glass preview */
.hero__card{display:grid}
.glass{
  border-radius: 26px;
  overflow:hidden;
  border:1px solid rgba(18,33,38,.12);
  background: rgba(255,255,255,.45);
  box-shadow: var(--shadow);
}
.glass__top{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px;
  border-bottom: 1px solid rgba(18,33,38,.10);
  background: rgba(255,255,255,.55);
}
.dots{display:flex; gap:6px}
.dots span{width:9px;height:9px;border-radius:999px;background:rgba(18,33,38,.18)}
.glass__label{font-size:12px; color: rgba(18,33,38,.55); font-weight:800; letter-spacing:.2px}

.mock{padding:16px; display:grid; gap:12px}
.mock__bar{height:10px; border-radius:999px; background: rgba(18,33,38,.10)}
.mock__line{height:10px; border-radius:999px; background: rgba(18,33,38,.10)}
.w80{width:80%}
.w60{width:60%}
.w90{width:90%}

.mock__grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:10px}
.mock__box{
  height:72px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(45,212,191,.20), rgba(96,165,250,.12));
  border: 1px solid rgba(18,33,38,.10);
}
.mock__cta{display:flex; gap:10px}
.mock__btn{
  flex:1; height:44px; border-radius: 14px;
  background: linear-gradient(135deg, var(--aqua), var(--aqua2));
  box-shadow: 0 14px 26px rgba(45,212,191,.22);
}
.mock__btn.ghost{
  background: rgba(255,255,255,.55);
  border:1px solid rgba(18,33,38,.12);
  box-shadow:none;
}
.mock__footer{display:flex; gap:10px; flex-wrap:wrap}
.mock__chip{
  width:92px; height:28px; border-radius:999px;
  background: rgba(255,255,255,.5);
  border:1px solid rgba(18,33,38,.10);
}

.glass__bottom{
  padding:14px 16px 16px;
  border-top:1px solid rgba(18,33,38,.10);
  background: rgba(255,255,255,.55);
}
.kpis{display:grid; grid-template-columns: repeat(3, 1fr); gap:10px}
.kpi{
  border:1px solid rgba(18,33,38,.10);
  background: rgba(255,255,255,.50);
  border-radius: 16px;
  padding:10px 10px;
  text-align:center;
}
.kpi__num{display:block; font-weight:900}
.kpi__txt{display:block; font-size:12px; color: var(--muted); font-weight:700}
.tiny{margin:10px 0 0; color: rgba(18,33,38,.55); font-size:12px}

.hero__fade{
  height: 18px;
  margin-top: 18px;
  background: linear-gradient(180deg, transparent, rgba(243,251,252,.85));
}

/* Strip */
.strip{
  border-top: 1px solid rgba(18,33,38,.10);
  border-bottom: 1px solid rgba(18,33,38,.10);
  background: rgba(255,255,255,.35);
}
.strip__inner{
  padding: 12px 0;
  display:flex; gap:18px; flex-wrap:wrap; justify-content:center;
  color: rgba(18,33,38,.70);
  font-weight:800; font-size:13px;
}

/* Sections */
.section{padding:44px 0}
.section.alt{
  background: rgba(255,255,255,.35);
  border-top: 1px solid rgba(18,33,38,.10);
  border-bottom: 1px solid rgba(18,33,38,.10);
}
.h2{
  margin:0;
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing:-.4px;
}
.sub{
  margin:10px auto 0;
  max-width: 70ch;
  color: var(--muted);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(18,33,38,.12);
  background: rgba(255,255,255,.55);
  color: rgba(18,33,38,.85);
  font-weight:900;
  cursor:pointer;
}
.btn--primary{
  border: 0;
  background: linear-gradient(135deg, var(--aqua), var(--aqua2));
  color: white;
  box-shadow: 0 16px 30px rgba(45,212,191,.22);
}
.btn--primary:hover{filter:brightness(.98)}
.btn--ghost:hover{background: rgba(255,255,255,.72)}

/* Cards */
.cards{
  margin-top: 22px;
  display:grid;
  gap: 14px;
}
.card{
  border-radius: 20px;
  background: var(--surface);
  border:1px solid rgba(18,33,38,.12);
  box-shadow: var(--shadow2);
  padding: 18px;
}
.card__icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(45,212,191,.22), rgba(96,165,250,.12));
  border:1px solid rgba(18,33,38,.10);
  font-size: 20px;
}
.card h3{margin:12px 0 6px}
.card p{margin:0 0 10px; color: var(--muted)}
.card ul{margin:0; padding-left: 18px; color: rgba(18,33,38,.70); font-weight:700}
.card li{margin:6px 0}

/* Steps */
.steps{
  margin-top: 20px;
  display:grid;
  gap: 14px;
}
.step{
  border-radius: 20px;
  background: var(--surface2);
  border:1px solid rgba(18,33,38,.12);
  padding: 16px;
  box-shadow: var(--shadow2);
}
.step__n{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 44px; height: 44px;
  border-radius: 16px;
  background: rgba(255,255,255,.7);
  border:1px solid rgba(18,33,38,.10);
  font-weight: 1000;
  letter-spacing:.6px;
  color: rgba(18,33,38,.65);
}
.step h3{margin:10px 0 6px}
.step p{margin:0; color: var(--muted)}
.note{
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  border:1px solid rgba(18,33,38,.12);
  background: rgba(255,255,255,.55);
  color: rgba(18,33,38,.72);
  font-weight: 700;
}

/* Portfolio */
.grid{
  margin-top: 22px;
  display:grid;
  gap: 14px;
}
.shot{
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(18,33,38,.12);
  background: rgba(255,255,255,.5);
  box-shadow: var(--shadow2);
}
.shot__img{
  height: 220px;
  background-size: cover;
  background-position: center;
}
.shot__img.one{
  background-image:
    linear-gradient(135deg, rgba(45,212,191,.30), rgba(96,165,250,.20)),
    url("https://websimples.tech/assets/img/estetica.png");
}
.shot__img.two{
  background-image:
    linear-gradient(135deg, rgba(96,165,250,.25), rgba(167,139,250,.18)),
    url("https://images.unsplash.com/photo-1521791055366-0d553872125f?auto=format&fit=crop&w=1400&q=70");
}
.shot__img.three{
  background-image:
    linear-gradient(135deg, rgba(167,139,250,.22), rgba(45,212,191,.18)),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1400&q=70");
}
.shot__bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 14px;
  background: rgba(255,255,255,.65);
  border-top: 1px solid rgba(18,33,38,.10);
  font-weight: 900;
}
.tag{
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(18,33,38,.12);
  background: rgba(255,255,255,.55);
  color: rgba(18,33,38,.70);
}

/* Pricing */
.pricing{
  margin-top: 22px;
  display:grid;
  gap: 14px;
}
.price{
  position: relative;
  border-radius: 22px;
  background: rgba(255,255,255,.60);
  border:1px solid rgba(18,33,38,.12);
  box-shadow: var(--shadow2);
  padding: 18px;
}
.price__top h3{margin:0}
.price__top p{margin:6px 0 0; color: var(--muted); font-weight:700}
.price ul{margin:14px 0 16px; padding-left: 18px; color: rgba(18,33,38,.72); font-weight:800}
.price li{margin:8px 0}
.price--best{
  background:
    radial-gradient(900px 300px at 50% 0%, rgba(45,212,191,.22), transparent 70%),
    rgba(255,255,255,.68);
  border-color: rgba(45,212,191,.35);
}
.ribbon{
  position:absolute;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--aqua), var(--blue));
  color: white;
  font-weight: 1000;
  font-size: 11px;
  letter-spacing:.5px;
}

/* FAQ */
.faq{
  margin-top: 22px;
  display:grid;
  gap: 12px;
}
details{
  border-radius: 18px;
  border:1px solid rgba(18,33,38,.12);
  background: rgba(255,255,255,.62);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
summary{
  cursor:pointer;
  list-style:none;
  padding: 14px 16px;
  font-weight: 1000;
  color: rgba(18,33,38,.80);
}
summary::-webkit-details-marker{display:none}
.faq__body{
  border-top: 1px solid rgba(18,33,38,.10);
  padding: 0 16px 14px;
  color: var(--muted);
  font-weight:700;
}

/* Contact */
.contact{
  margin-top: 22px;
  display:grid;
  gap: 14px;
}
.panel{
  border-radius: 22px;
  border:1px solid rgba(18,33,38,.12);
  background: rgba(255,255,255,.62);
  box-shadow: var(--shadow2);
  padding: 18px;
}
.panel h3{margin:0 0 6px}
.muted{margin:0 0 12px; color: var(--muted); font-weight:700}

.list{display:grid; gap:10px; margin-top: 10px}
.chip{
  display:flex; align-items:center; gap:10px;
  padding: 12px 14px;
  border-radius: 16px;
  border:1px solid rgba(18,33,38,.12);
  background: rgba(255,255,255,.55);
  font-weight: 900;
  color: rgba(18,33,38,.80);
}
.chip:hover{background: rgba(255,255,255,.75)}

.mini{
  margin-top: 14px;
  display:grid;
  gap: 10px;
}
.mini__kpi{
  display:flex; justify-content:space-between; gap:10px;
  border:1px solid rgba(18,33,38,.10);
  background: rgba(255,255,255,.50);
  padding: 10px 12px;
  border-radius: 16px;
  font-weight: 900;
}
.mini__kpi span{color: var(--muted); font-weight:800}

.form{display:grid; gap: 12px}
.row{display:grid; gap: 12px}
label span{display:block; font-size:13px; color: rgba(18,33,38,.72); font-weight:900; margin-bottom: 6px}
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(18,33,38,.12);
  background: rgba(255,255,255,.55);
  outline:none;
  font-size: 15px;
}
textarea{min-height: 120px; resize: vertical}
input:focus, select:focus, textarea:focus{
  border-color: rgba(45,212,191,.45);
  box-shadow: 0 0 0 4px rgba(45,212,191,.18);
}
.hp{position:absolute; left:-9999px; width:1px; height:1px; opacity:0}

/* Footer */
.footer{padding: 24px 0 34px}
.footer__inner{
  display:flex; flex-direction:column; gap:10px;
  align-items:center; justify-content:center;
  color: rgba(18,33,38,.62);
  font-weight: 800;
  font-size: 13px;
}
.footer__links{display:flex; gap:10px; align-items:center}
.footer__links a{color: rgba(18,33,38,.62)}
.footer__links a:hover{color: rgba(18,33,38,.90)}

/* Desktop */
@media (min-width: 900px){
  .nav{display:flex}
  .burger{display:none}
  .hero__grid{grid-template-columns: 1.05fr .95fr; align-items: center}
  .hero__cta{flex-direction: row}
  .hero__cta .btn{min-width: 200px}
  .cards{grid-template-columns: repeat(3, 1fr)}
  .steps{grid-template-columns: repeat(4, 1fr)}
  .grid{grid-template-columns: repeat(3, 1fr)}
  .pricing{grid-template-columns: repeat(3, 1fr)}
  .contact{grid-template-columns: .9fr 1.1fr}
  .row{grid-template-columns: 1fr 1fr}
  .footer__inner{flex-direction: row; justify-content: space-between}
}

/* REVEAL EFFECT */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .9s ease,
    transform .9s cubic-bezier(.2,.65,.3,1);
}

.reveal.active{
  opacity: 1;
  transform: translateY(0);
}

