html {
    scroll-behavior: smooth;
}

body {
  margin: 0;
  /*font-family: 'Poppins', sans-serif;*/
  background: radial-gradient(circle at top, #8f3cff, #3b0a6e);
  color: #fff;

  
}

p,label,h1,h2,h3,h4{
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  color: #333333;
}

.wrap-contact100 p,
.wrap-contact100 label,
.wrap-contact100 h1,
.wrap-contact100 h2,
.wrap-contact100 h3,
.wrap-contact100 h4 {
  text-shadow: none;
}

/* TOP BAR */
.top-bar {
  /*background: rgba(0,0,0,.25);*/
  font-size: 13px;
  width: 100%;
}
.top-bar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 6px 0px;
  display: flex;
  justify-content: space-between;
}
.top-bar a { color:#fff; text-decoration:none; margin-right:10px }
.top-bar i { color:#00ff9c }

/* HEADER */
.site-header {
  /*position: sticky;*/
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { width: 140px }
.menu{
  margin-right: 10px;
}
.menu a {
  color:#fff;
  margin:0 15px;
  text-decoration:none;
}
.menu a.active {
  border-bottom: 2px solid #00ff9c;
}

/* CTA */
.btn-cta {
  background: linear-gradient(90deg,#00ff9c,#00c2ff);
  padding:12px 24px;
  border-radius:30px;
  color:#000;
  font-weight:700;
  text-decoration:none;
}
.btn-cta.big { margin-top:30px }

/* HERO */
.hero {
  text-align:center;
  padding:30px 20px 80px 20px;
}
.hero-logo {
  max-width:380px;
  margin:30px auto;
  display:block;
}
.hero-icon{
  max-width: 200px;
}

/* STEPS */
.steps { text-align:center; padding:80px 20px }
.steps-grid {
  display:flex;
  justify-content:center;
  gap:60px;
  flex-wrap:wrap;
}
.step {
  width:200px;
  /*height:160px;*/
  /*background:linear-gradient(#9a4cff,#5a14c9);*/
 
  border-radius:50%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.step p{
  color: #fff !important;
}
.step label{
  font-size: 12px;
}
.step span {
  background:#00ff9c;
  color:#000;
  width:32px;
  height:32px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
}

/* INFO */
.info {
  background: rgba(0,0,0,.25);
  padding:40px;
  text-align:center;
}

/* FOOTER */
.footer {
  background:#2a054d;
  padding:60px 20px;
}
.footer-bottom {
  text-align: center;
  margin-top: 25px;
}
.footer-inner {
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap:30px;
}
.footer a { color:#fff; text-decoration:none; display:block }

.footer img{
  width: 200px;
}

.section-divider {
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255,255,255,0.25),
    transparent
  );
   box-shadow: 0 6px 10px rgba(0,0,0,0.5);
}



/* Variante más curva tipo imagen */
.section-divider.curve {
  height: 60px;
  background: radial-gradient(
    ellipse at center,
    rgba(255,255,255,0.25) 0%,
    rgba(255,255,255,0.15) 30%,
    transparent 70%
  );
}


/* RESPONSIVE */
@media(max-width:768px){
  .menu { display:none }
}
