* { margin: 0; padding: 0; box-sizing: border-box; }

:root{
  --bg: #070a0f;
  --bg2: #0b1020;
  --card: rgba(255,255,255,0.06);
  --card2: rgba(255,255,255,0.08);
  --text: #e9eefb;
  --muted: rgba(233,238,251,0.75);
  --stroke: rgba(255,255,255,0.12);
  --accent: #22c55e; /* verde eléctrico */
  --accent2: #60a5fa; /* azul suave para detalles */
}

body{
  font-family: "Inter", sans-serif;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(34,197,94,0.18), transparent 60%),
              radial-gradient(900px 500px at 85% 20%, rgba(96,165,250,0.18), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  line-height: 1.6;
}

.container{
  width: min(1100px, 92%);
  margin: 0 auto;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7,10,15,0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke);
}

.topbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

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

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(34,197,94,0.65);
}

.brand-name{
  font-weight: 700;
  letter-spacing: 0.2px;
}

.topbar-phone{
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  opacity: 0.9;
}

.hero{
  padding: 72px 0 46px;
}

.hero-inner{
  display: grid;
  gap: 22px;
}

.badge{
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero h1{
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero p{
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 58ch;
  margin-bottom: 22px;
}

.hero-ctas{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.btn{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.08s ease;
}

.btn:active{ transform: translateY(1px); }

.btn.primary{
  background: linear-gradient(90deg, rgba(34,197,94,0.95), rgba(96,165,250,0.75));
  color: #071016;
}

.btn.ghost{
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
  color: var(--text);
}

.hero-meta{
  display: grid;
  gap: 12px;
}

.meta-card{
  padding: 12px 14px;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}

.meta-title{
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.meta-text{
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-right{
  display: none;
}

.hero-panel{
  padding: 18px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
}

.hero-panel h3{
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-panel ul{
  padding-left: 18px;
  color: var(--muted);
}

.hero-panel li{ margin: 8px 0; }

.panel-note{
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(233,238,251,0.6);
}

.section{
  padding: 52px 0;
}

.section-alt{
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  background: rgba(255,255,255,0.02);
}

.section-title{
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.section-subtitle{
  color: var(--muted);
  margin-bottom: 22px;
}

.grid-3{
  display: grid;
  gap: 14px;
}

.card{
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
}

.card h3{
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.card p{
  color: var(--muted);
}

.reviews-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.quote{
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.03);
}

.quote p{
  color: var(--muted);
  font-weight: 500;
}

.location-grid{
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.location-text{
  margin-bottom: 14px;
  color: var(--muted);
}

.location-ctas{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.location-map{
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.02);
}

.footer{
  padding: 22px 0;
  border-top: 1px solid var(--stroke);
  background: rgba(7,10,15,0.55);
  backdrop-filter: blur(10px);
}

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

.footer-brand{
  font-weight: 800;
}

.footer-small{
  color: rgba(233,238,251,0.65);
  font-size: 0.92rem;
}

.footer-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* DESKTOP */
@media (min-width: 900px){
  .hero-inner{
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

  .hero-right{
    display: block;
  }

  .hero-meta{
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-3{
    grid-template-columns: repeat(3, 1fr);
  }

  .location-grid{
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .location-map{
    height: 360px;
  }
}
