body {
      margin: 0;
      font-family: 'Georgia', serif;
      background-color: #f8f2e9;
      color: #443422;
    }
    .container {
      max-width: 800px;
      margin: auto;
      padding: 0 20px;
    }
    .hero {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height: 600px; /* aumentamos altura para dar más espacio a la imagen */
        display: flex;
        justify-content: center;
        text-align: center;
        margin:50px;
    }

   @media only screen and (max-width: 768px) {
        .hero{
            margin:0;
            height:300px;
        }
    }

    .hero-logo img {
      max-height: 100px;
    }
    h1 {
      font-size: 32px;
      margin-top: 20px;
    }
    h2 {
      font-size: 18px;
      font-weight: normal;
      margin-bottom: 30px;
    }
    .gallery {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 30px;
    }
    .gallery img {
      width: 30%;
      border-radius: 6px;
    }
    .buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 40px;
    }
    .buttons a {
      padding: 12px 24px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      font-size: 14px;
    }
    .btn-shop {
      background-color: #d2b48c;
      color: #fff;
    }
    .btn-learn {
      background-color: #5c432d;
      color: #fff;
    }
    .description {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 30px;
    }
    .subscription {
      text-align: center;
      margin-bottom: 40px;
    }
    .subscription input[type="email"] {
      padding: 10px;
      width: 60%;
      border: 1px solid #ccc;
      border-radius: 4px;
      margin-bottom: 10px;
    }
    .subscription button {
      padding: 10px 20px;
      background-color: #5c432d;
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    footer {
      text-align: center;
      font-size: 12px;
      color: #aaa;
      margin-bottom: 20px;
    }


    .row {
  display: flex;
  align-items: center; /* Alinea verticalmente ambos col-md-6 */
  min-height: 400px;   /* Ajusta altura mínima según la imagen */
}

.col-md-6 {
  flex: 1; /* Hace que cada columna use el 50% automáticamente */
  display: flex;
  align-items: center;
  padding: 20px;
}

.description {
  text-align: justify;
}

.img-ajustada {
  width: 100%;
  height: auto; /* Mantiene proporción */
  display: block;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}