:root{
  --bg1:#fff8ec;
  --bg2:#f4f4f4;
  --card:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --line:#e5e7eb;
  --accent:#22c55e;
  --accent2:#16a34a;

  --shadow: 0 18px 45px rgba(0,0,0,.10);
  --shadow2: 0 10px 24px rgba(0,0,0,.08);
  --radius: 20px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(900px 600px at 15% 10%, rgba(34,197,94,.18), transparent 55%),
              radial-gradient(900px 600px at 85% 20%, rgba(245,158,11,.18), transparent 55%),
              linear-gradient(to bottom, var(--bg1), var(--bg2));
}

.container{
  max-width: 1020px;
  margin: 0 auto;
  padding: 18px 18px;
}

/* Banner superior */
.notice{
  background: rgba(17,24,39,.92);
  color: rgba(255,255,255,.92);
  font-size: 13px;
}
.notice-inner{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  padding: 10px 18px;
}
.dot{ opacity:.55; }

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229,231,235,.8);
  z-index: 10;
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand img {
  width: 115px;
  height: auto;
}
.brand-name{
  font-weight: 600;
  letter-spacing: -0.4px;
}
.brand-sub{
  font-size:13px;
  color:var(--muted);
  margin-top:2px;
}

/* HERO */
.hero{
  display:grid;
  grid-template-columns: 1.25fr .95fr;
  gap:18px;
  padding-top: 18px;
}

.hero-left{
  padding: 6px 0;
}

h1{
  margin: 12px 0 10px;
  font-size: 44px;
  line-height: 1.03;
  letter-spacing: -1px;
}

.lead{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 52ch;
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin: 10px 0 18px;
}

.badge{
  font-size: 13px;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(229,231,235,.9);
  background: rgba(255,255,255,.70);
  box-shadow: 0 6px 16px rgba(0,0,0,.05);
}

/* Cards */
.card{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(229,231,235,.9);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow2);
}

.highlight{
  position: relative;
  padding: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
}

.tag{
  position:absolute;
  top:14px;
  right:14px;
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(34,197,94,.35);
  color: #14532d;
  font-weight: 900;
  font-size: 12px;
  padding: 7px 11px;
  border-radius: 999px;
}

h2{
  margin: 4px 0 10px;
  font-size: 20px;
}

h3{
  margin: 0 0 10px;
  font-size: 18px;
}

.price{
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -0.8px;
  margin: 8px 0 8px;
}

.price.small{
  font-size: 28px;
}

.muted{
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.55;
  font-size: 14px;
}

.steps{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.steps li{ margin: 7px 0; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius: 16px;
  padding: 11px 14px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
  user-select:none;
}

.btn-lg{
  padding: 12px 16px;
  border-radius: 18px;
}

.btn-primary{
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  color: white;
  box-shadow: 0 14px 28px rgba(34,197,94,.22);
}

.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(34,197,94,.28);
}

.btn-ghost{
  background: rgba(255,255,255,.9);
  border-color: rgba(229,231,235,.95);
  color: var(--text);
}

.btn-ghost:hover{
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(0,0,0,.08);
}

.w100{ width:100%; }

.cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 10px 0 8px;
}

.mini{
  color: var(--muted);
  font-size: 13px;
}

/* Grids */
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}


.testimonials{
  margin-top: 16px;
}

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

.section-head h2{
  margin: 0 0 6px;
}

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

.testimonial-card{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.testimonial-card p{
  margin:0;
  color: var(--muted);
  line-height: 1.5;
}

.stars{
  color:#f59e0b;
  letter-spacing: 2px;
  font-size: 18px;
  line-height:1;
}

.footer-card{
  margin: 16px 0 20px;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

/* Responsive */
@media (max-width: 950px){
  .hero{ grid-template-columns: 1fr; }
  h1{ font-size: 34px; }
  .grid{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .topbar-inner{ flex-wrap:wrap; }
  .testimonials-grid{ grid-template-columns: 1fr; }
}
.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.instagram {
  width: 42px;
  height: 42px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow2);
  transition: 0.2s ease;
}

.instagram svg {
  width: 20px;
  height: 20px;
  color: #E1306C; /* color oficial Instagram */
}

.instagram:hover {
  transform: scale(1.1);
}
