* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
html, body {
  height: 100%;
}
body {
  background-color: azure;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  }
  main {
    flex: 1;
    padding: 20px;
  }
  header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: black;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 12px black;
  }
  h1 {
    color: black;
    font-family: Arial;
    text-align: center;
    font-size: 40px;
  }
  h2 {
    font-family: Arial;
    text-align: left;
    font-size: 30px;
    font-family: 'Trebuchet MS', sans-serif;
    letter-spacing: 2px;
    color: rgb(196, 189, 199);
    text-transform: uppercase;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: inline-block;
    margin-top: 0px;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.5);
  }
  h3 {
    color: black;
    font-family: Arial;
    text-align: center;
    font-size: 18px;
    font-weight: normal;
    font-size: 20px;
    margin-top: 4px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.5);
  }
  p {
    color: black;
    font-family: Arial;
    text-align: justify;
    font-size: 14px;
    font-style: italic;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.5);
  }
  .banner-oferta {
    background: linear-gradient(135deg, #d67878 0%, #ff8e8e 100%);
    border-radius: 12px;
    padding: 25px;
    margin: 30px auto;
    max-width: 900px;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px dashed white;
  }
  .banner-oferta h3 {
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  }
  .banner-oferta p {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    font-style: normal;
  }
  .btn-oferta {
    background: white;
    color: #ff6b6b;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
  .btn-oferta:hover {
    background: #ffecec;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  }
  .banner-tendencias {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 30px auto;
    max-width: 800px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
  }
  .banner-tendencias h3 {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
  }
  .banner-tendencias::before {
    content: "✨";
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 20px;
  }
  .banner-tendencias::after {
    content: "✨";
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 20px;
  }
  .minititulo {
    font-size: 13px;
    font-family: Arial, sans-serif;
    color: black;
    letter-spacing: 1px;
    margin: 20px;
    font-style: oblique;
  }
  .contenedor2 {
    border: 2px solid black;
    width: 300px;
    height: 300px;
    padding: 10px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    box-shadow: 0 4px 12px black;
    text-align: center;
  }
  .contenedor-principal {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  }
  .subtitulo {
  border: 2px solid black;
  margin-top: 4px;
  font-size: 18px;
  font-family: Arial, sans-serif;
  color: black;
  box-shadow: 0 4px 12px black;
  text-align: center;
  padding: 5px;
  }
  .contenedor-horizontal img:hover {
    transform: scale(1.05);
  }
  .image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .image-container:hover img {
    transform: scale(1.1);
  }
  footer {
    background: rgb(63, 62, 62);
    color: white;
    text-align: center;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
    width: 100%;
    margin-top: 140px;
    line-height: 1.6;
  }
  footer p:first-child {
    margin-top: 0;
  }
  .footer-content {
    max-width: 800px;
    margin: 0 auto;
  }
  .footer-links {
    margin: 15px 0;
  }
  .footer-links a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: lightblue;
    text-decoration: underline;
  }
  .social-media {
    margin: 15px 0;
  }
  .social-media a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
  }
  .payment-methods {
    margin-top: 15px;
    font-size: 12px;
    opacity: 0.9;
  }
  .titulo-principal {
    font-family: 'Georgia', serif;
    font-size: 48px;
    font-weight: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
    text-shadow: 2px 4px 4px rgba(0,0,0,0.5);
    margin: 0;
  }
  .titulo-destacado {
    font-weight: bold;
    font-style: italic;
    color: #201f1f;
    text-shadow: 2px 3px 4px rgba(0,0,0,0.7);
}