* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f5f7fa;
  color: #2b2b2b;
 
}

.contenedor {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  padding-top: 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.descripcion {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #6c757d;
}

.servicios {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tarjeta {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}

.tarjeta:hover {
  transform: scale(1.03);
}

.tarjeta h2 {
  color: #4A6CFA;
  margin-bottom: 10px;
}

.tarjeta p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
}

.tarjeta ul {
  list-style: none;
  text-align: left;
  padding-left: 0;
  margin-bottom: 15px;
}

.tarjeta ul li {
  padding: 5px 0;
  font-size: 0.95rem;
}

.tarjeta button,
.tarjeta .btn {
  background-color: #25D366;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.tarjeta button:hover,
.tarjeta .btn:hover {
  background: #3750db;
}

select {
  padding: 10px;
  border-radius: 6px;
  font-size: 1rem;
  margin: 10px 0;
  border: 1px solid #ccc;
}

.precio {
  font-weight: bold;
  margin: 10px 0;
  color: #ff4d4d;
}

@media (max-width: 768px) {
  .servicios {
    flex-direction: column;
    align-items: center;
  }

  .tarjeta {
    width: 90%;
  }

  h1 {
    font-size: 2rem;
  }

  .descripcion {
    font-size: 1rem;
  }
}

select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: white;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
  max-width: 250px;
}

select:hover, select:focus {
  border-color: #55aff8fb;
  box-shadow: 0 0 5px #55aff8aa;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #3a7bd5, #ff3cac);
  color: white;
  padding: 20px 15px;  /* Más espacio interno */
  font-size: 1.2rem;   /* Texto más grande */
  height: 100px;        /* Altura total del navbar */
  border: none;
  box-shadow: none;
}



.navbar-left {
  display: flex;
  align-items: center;
  padding-top: 10px;
}



.navbar-icon {
  width: 35px;   /* tamaño ajustable */
  height: auto;
}




.navbar-right {
  position: absolute;
  right: 10px; /* lo coloca a la derecha */
  top: 38px;   /* opcional: ajusta según necesites */
  font-weight: bold;
}



.icon-btn {
  background: none;
  border: none;
  font-size: 20px;
  margin-left: 10px;
  cursor: pointer;
}

.menu-icon {
  font-size: 2rem;
  background: none;
  border: none;
  color: rgb(255, 255, 255);
  cursor: pointer;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #262626;
  color: white;
  padding-top: 2rem;
  transition: left 0.3s ease;
  z-index: 1000;
}

.side-menu ul {
  list-style: none;
  padding: 0;
}

.side-menu ul li {
  padding: 1rem;
}

.side-menu ul li a {
  color: white;
  text-decoration: none;
  display: block;
}

.side-menu.open {
  left: 0;
}

.imagen {
  width: 150px;
  height:auto;
  object-fit: cover;
  margin-top: 10px;
}

.content {
  padding-top: 80px;
}

.promo {
  text-align: center;
  padding: 30px 20px;
}

.promo img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
}

.promo-text h2 {
  margin-top: 20px;
  font-size: 24px;
}

.promo-text p {
  margin: 10px 0;
}

.shop-btn {
  background-color: black;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
}

.training h2 {
  font-size: 22px;
  margin-bottom: 20px;
}


.rede {
  height: 3em; /* Ajusta la altura al tamaño del texto */
  vertical-align: middle; /* Alineación vertical con el texto */
}
.redee {
  height: 2.5em; /* Ajusta la altura al tamaño del texto */
  vertical-align: middle; /* Alineación vertical con el texto */
  background-color: #c0392b;
  border-radius: 5px;
  
}
 .about-container {
      padding: 30px 20px;
      max-width: 800px;
      margin: auto;
    }

    .about-section {
      background-color: #e6e6e6c5;
      border-radius: 12px;
      padding: 25px;
      margin-bottom: 20px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    }

    .about-section h2 {
      font-size: 24px;
      margin-bottom: 15px;
      color: #ff006f;
      text-align: center;
    }

    .about-section p,
    .about-section ul {
      font-size: 16px;
      line-height: 1.7;
      text-align: justify;
      color: #0b0b0b;
    }

    .about-section ul {
      padding-left: 20px;
      margin-top: 10px;
    }

    .about-section ul li {
      margin-bottom: 10px;
    }



    @media (max-width: 600px) {
      .about-container {
        padding: 20px 10px;
      }

      .about-section h2 {
        font-size: 20px;
      }

      .about-section p {
        font-size: 15px;
      }

    }

   .redes {
      width: 60px;
    }