* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* FONDO GENERAL DE LA PÁGINA */
body {
  background-color: #e5e5e5; /* gris claro */
}

/* CONTENIDO PRINCIPAL */
.content {
  background-color: #f2f2f2; /* gris más suave */
  min-height: 100vh;
  padding: 30px;
}



/* MENSAJE DEL CREADOR */
.creador {
  position: absolute;
  bottom: 15px;
  left: 20px;
  right: 20px;
  text-align: center;
  font-size: 13px;
  color: #ccc;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 10px;
}

/* MENÚ LATERAL */
.sidebar {
  width: 220px;
  background-color: #1e2a38;
  color: #fff;
  height: 100vh;
  padding: 20px;
  position: fixed;
}

.brand {
  text-align: center;
  margin-bottom: 30px;
}

.logo {
  font-size: 40px;
}

.menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 12px;
  margin-bottom: 10px;
  background-color: #2e3f55;
  border-radius: 6px;
}

.menu a:hover {
  background-color: #4da3ff;
}

/* CONTENIDO */
.content {
  margin-left: 220px;
  padding: 30px;
  width: 100%;
}

.section {
  margin-bottom: 40px;
}

.section h1,
.section h2 {
  margin-bottom: 10px;
}

/* PRODUCTOS */
.productos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.producto {
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* CONTENEDOR DE IMAGEN DEL PRODUCTO */
.producto img {
  width: 100%;
  height: 350px;          /* Altura fija del cuadro */
  object-fit: cover;     /* Ajusta la imagen sin deformarla */
  object-position: center; /* Centra la imagen */
  border-radius: 6px;
  display: block;
}


.producto h3 {
  margin: 10px 0;
}

.producto select {
  width: 100%;
  padding: 6px;
  margin: 8px 0;
}

.producto button {
  width: 100%;
  padding: 8px;
  background-color: #4da3ff;
  border: none;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

.producto button:hover {
  background-color: #1e2a38;
}

/* CONTACTO */
.contacto-form {
  max-width: 400px;
  display: flex;
  flex-direction: column;
}

.contacto-form input,
.contacto-form textarea {
  margin-bottom: 10px;
  padding: 8px;
}

.contacto-form button {
  background-color: #1e2a38;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.contacto-form button:hover {
  background-color: #4da3ff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .productos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sidebar {
    position: relative;
    width: 100%;
    height: auto;
  }

  .content {
    margin-left: 0;
  }

  .productos {
    grid-template-columns: 1fr;
  }
}

/* INTRODUCCIÓN CENTRADA */
.intro {
  text-align: center;
}

.intro-text {
  max-width: 700px;
  margin: 0 auto;     /* centra el bloque */
  line-height: 1.8;  /* espacio entre líneas */
  font-size: 16px;
}


