/*------Variables------*/
/*------Importaciones------*/
/*------Estilos generales------*/
body {
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  margin: 0;
  padding: 0;
}

h1 {
  font-family: "Dancing Script", cursive;
  text-align: center;
  align-items: center;
}

/*------Hero------*/
.hero-section {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("./images/fondo gym.webp") center center/cover no-repeat;
}

/*------Features------*/
.features .icon {
  background-color: rgb(239.8137651822, 99.6862348178, 147.3157894737);
  display: inline-flex;
  padding: 20px;
  border-radius: 50%;
}

/*------Botones y textos------*/
.text-pink {
  color: #e91e63;
}

.btn-rosa {
  background-color: #e91e63;
  color: white !important;
  border: none;
}
.btn-rosa:hover {
  background-color: #d81b60;
  color: white !important;
}

/*------Contacto------*/

.instagram-link {
  color: #ff69b4;   /* mismo rosa que usás */
  text-decoration: none; /* saca el subrayado */
  font-weight: normal;   /* mantiene el mismo peso que el texto */
}

.instagram-link:hover {
  text-decoration: underline; /* opcional: subrayado al pasar el mouse */
}


.contacto {
  background: #ff69b4;
  padding: 50px 20px;
  text-align: center;
  color: white;
}
.contacto h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  animation: fadeIn 1s ease;
}

.contenedor-contacto {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.formulario {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.formulario input,
.formulario textarea {
  padding: 12px;
  border: 2px solid white;
  border-radius: 8px;
  font-size: 1em;
  resize: none;
  background-color: white;
  color: #333;
  transition: all 0.3s;
}
.formulario input:focus,
.formulario textarea:focus {
  outline: none;
  border-color: #ffd1ea;
  box-shadow: 0 0 10px white;
}
.formulario button {
  background: white;
  color: #ff69b4;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.formulario button:hover {
  background: #ffd1ea;
  color: #d81b60;
}

.info-negocio {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  background: white;
  color: #ff69b4;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  animation: slideUp 1s ease;
}
.info-negocio h3 {
  color: #d81b60;
  margin-bottom: 10px;
}
.info-negocio p {
  margin: 10px 0;
  font-size: 1em;
}

/*------Media query------*/
@media (max-width: 768px) {
  .contenedor-contacto {
    flex-direction: column;
    align-items: center;
  }
  .formulario,
  .info-negocio {
    max-width: 90%;
  }
  .contacto h2 {
    font-size: 2em;
  }
  .formulario input,
  .formulario textarea,
  .formulario button {
    font-size: 1em;
  }
}
/*------Animaciones------*/
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*------Tienda------*/
.tienda {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.producto {
  background-color: white;
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.producto img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.etiqueta {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff69b4;
  color: #d63384;
  font-weight: bold;
  font-size: 0.8rem;
  padding: 5px 8px;
  border-radius: 4px;
}

.nombre {
  font-size: 0.9rem;
  margin: 10px 0;
  color: #333;
}

.precio {
  font-size: 1rem;
  margin: 10px 0;
}

.original {
  text-decoration: line-through;
  color: #999;
  margin-right: 5px;
}

.precio-color {
  color: #d63384;
  font-weight: bold;
}

.btn {
  background-color: #da70d6;
  color: white;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
.btn:hover {
  background-color: #ff69b4;
}

/*------Acerca de nosotros------*/
.acerca-nosotros {
  display: flex;
  justify-content: center;
  background-color: #fdfdfd;
  padding: 50px 20px;
  font-family: "Segoe UI", sans-serif;
  color: #333;
}
.acerca-nosotros .contenido {
  max-width: 900px;
}
.acerca-nosotros h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 20px;
}
.acerca-nosotros h3 {
  font-size: 1.6rem;
  color: #222;
  margin-top: 30px;
}
.acerca-nosotros p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.acerca-nosotros ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.acerca-nosotros ul li {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.acerca-nosotros .final {
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 30px;
}

.caja {
  background-color: lightcoral;
  width: 300px;
  padding: 20px;            /* Para que no quede todo pegado a los bordes */
  border-radius: 30px 70px;
  margin: 0 auto;           /* Esto centra la tarjeta en la página */
  text-align: center;       /* Centra el texto dentro */
}

.foto {
  background-color: white;
  height: 150px;
  width: 150px;             /* La hago cuadrada para que quede circular */
  margin: 0 auto 15px auto; /* Centrada con margen abajo */
  border-radius: 50%;       /* Círculo perfecto */
  overflow: hidden;         /* Recorta la imagen dentro del círculo */
}

.foto-vane {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

article p {
  text-align: justify;      /* Opcional: que quede alineado parejo */
  font-size: 14px;
  line-height: 1.4;
}

/*navbar*/

.icono-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover; /* para que no se deforme */
}


/*------Actividades------*/
.custom-card {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}
.custom-card:hover {
  transform: scale(1.02);
}

/*# sourceMappingURL=style.css.map */
