/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600&display=swap');

/* Reset general */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Redes sociales arriba */
.redes-superiores {
  background-color: #ffffff;
  padding: 8px 12px;
  text-align: right;
}
.redes-superiores a {
  margin-left: 10px;
  display: inline-block;
}

/* Estilo para el header */
.main-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  background-color: white;
}

/* Logo adaptativo */
.logo-container {
  text-align: center;
  margin-bottom: 10px;
}

.logo-img {
  width: 180px;
  max-width: 100%;
  height: auto;
}

/* Navegación */
.main-nav {
  background-color: #3d4451;
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

.main-nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Manrope', sans-serif;
}

.main-nav a:hover {
  color: #00cfe8;
}

/* Responsive para celular */
@media screen and (max-width: 768px) {
  .logo-img {
    width: 120px;
  }

  .main-nav a {
    display: inline-block;
    margin: 10px 8px;
    font-size: 14px;
  }
}
/* tienda.css - estilos específicos para la tienda */

/* tienda.css - estilos específicos para tienda */

.hero-tienda {
  background-color: #f5f5f5;
  padding: 4rem 2rem;
  text-align: center;
}
.hero-tienda h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}
.hero-tienda p {
  font-size: 1.1rem;
  color: #666;
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  background-color: #fff;
}

.producto {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background-color: #fafafa;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.producto:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.producto img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.producto h2 {
  font-size: 1.3rem;
  margin: 0.5rem 0;
  color: #222;
}

.producto p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.producto .precio {
  font-size: 1.1rem;
  font-weight: bold;
  color: #444;
  margin: 0.8rem 0;
}

.boton-comprar {
  display: inline-block;
  background-color: #00cee3;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.boton-comprar:hover {
  background-color: #56397b;
}

.boton-comprar.disabled {
  background-color: #ccc;
  pointer-events: none;
  cursor: default;
}


/* Secciones */
section:not(.hero) {
  margin: 60px auto;
  padding: 0 20px;
  max-width: 1000px;
}
section h2 {
  text-align: center;
  font-size: 28px;
  font-family: 'Manrope', sans-serif;
  margin-bottom: 30px;
  color: #222;
}
.hero {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 450px; /* Ajustás este número a tu gusto */
  object-fit: cover;
  display: block;
}

/* Imagen principal */
.hero-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}
/* Footer */
footer {
  background-color: #4f5966;
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 50px;
}
footer p {
  margin: 5px 0;
}
footer a {
  margin: 0 8px;
  display: inline-block;
}

/* Responsive ajustes */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  .vision-mision {
    flex-direction: column;
    align-items: center;
  }
  .equipo {
    flex-direction: column;
    align-items: center;
  }
  .servicios {
    gap: 30px;
  }
  .banner-ebook h3 {
    font-size: 20px;
  }
}
