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

/* colores */

.blanco {
    color: white;
}

/* GENERAL */
body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: #050314;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 1000;
}

.nav-logo img {
    height: 75px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}


.nav-btn {
    padding: 8px 16px;
    border-radius: 20px;
    background: #7d10ac;
    color: white !important;
}





/* BOTONES */

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    background: white;
    color: #111;
}



/* SECCIONES */
.section {
    padding: 80px 20px;
    width: 90%;
    margin: auto;
    text-align: center;
    border-radius: 10px; 
}


/* FONDOS */
.morado {
    background: #7d10ac;
}

.bg-dark {
    background: #6b1984;
    color: white;
}

/* SERVICIOS */

.planes-section{
  padding: 80px 20px;
  text-align: center;
  /* aquí pones el fondo general si quieres */
  background: #6d1fb8; /* ejemplo */
}

.planes-title{
  margin: 0 0 50px;
  color: white;
  font-size: 44px;
  font-weight: 800;
}

.planes-grid{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;                  /* ⬅️ sin hueco para que se vea “en columnas” */
}

.plan{
  padding: 40px 30px;
  color: white;
}

/* separadores verticales como en tu ejemplo */
.plan + .plan{
  border-left: 1px solid rgba(255,255,255,0.25);
}

.plan h3{
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 800;
}

.plan ul{
  list-style: none;         /* ⬅️ sin bullet feo */
  padding: 0;
  margin: 0 0 28px;
  line-height: 1.8;
  opacity: 0.95;
}

.btn{
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  color: #3b1166;
  text-decoration: none;
  font-weight: 700;
}

/* responsive */
@media (max-width: 900px){
  .planes-grid{
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .plan + .plan{
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.25);
  }
}




/* FOOTER */
footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

.contact-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}