/* Estilos generales */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
  }
  
  header {
    background-color: #cc6f00;
    color: white;
    padding: 20px;
  }
  h1 {
    font-size: 3rem; /* Tamaño grande */
    color: black;  
    /*text-shadow: 2px 2px 8px rgba(0,0,0,0.4); /* Sombra para resaltar */
    text-transform: uppercase; /* Todo en mayúsculas */
    letter-spacing: 2px; /* Espacio entre letras */
    font-family: 'Arial Black', sans-serif; /* Fuente gruesa */
    margin-bottom: 20px;
    text-align: center; /* Centrado */
    
  }
  nav {
    background-color: #cc6f00;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    
  }
  
  nav ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 80px;
  }
  
  nav a {
    color: white;
    font-size: 28px;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
  }
  
  nav a:hover {
    text-decoration: underline;
    color: #ffcd8a;
  }
  
  /* Secciones */
  section {
    padding: 60px 20px;
  }
  
  h2 {
    text-align: center;
    margin-bottom: 20px;
  }

  #promocion {
    text-align: center;
    padding: 50px;
    position: relative;
  }
  
  #info {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    transition: opacity 0.5s ease-in-out;
  }
  
  #informacion {
    display: none;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
  }
  
  #boton-info {
    width: 220px;
    height: 130px;
    /*margin-top: 20%;*/
    background-color: #cc6f00;
    color: white;
    /*border: 1px solid black;/*
    /*padding: 10px 20px;*/
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
  }
  
  #boton-info:hover {
    background-color: #ffcd8a;
  }

  
  /* Carrusel exteriores*/
 
  .carousel-container {
    position: relative;
    max-width: 800px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }
  
  .carousel-slide {
    display: none;
    position: relative;
  }
  
  .carousel-slide.active {
    display: block;
  }
  
  .carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  
  .caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 20px 10px;
  }
  
  .caption h3 {
    margin: 0 0 5px;
  }
  
  button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
  }
  
  button.prev {
    left: 10px;
  }
  
  button.next {
    right: 10px;
  }
  
  button:hover {
    background: rgba(0,0,0,0.7);
  }
  
  
  /* Footer */
  footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 30px 20px;
  }
  
  .whatsapp-link {
    text-decoration: none;
    color: #25D366;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  
  .whatsapp-icon {
    width: 20px;
    height: 20px;
  }

  .whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    cursor: pointer;
  }
  
  .whatsapp-button img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s;
  }
  
  .whatsapp-button img:hover {
    transform: scale(1.1);
  }
  
  /* ========================
   MEDIA QUERIES RESPONSIVE
   ======================== */

/* Tablet (pantallas hasta 992px) */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }

  nav ul {
    gap: 40px;
    flex-wrap: wrap;
  }

  .carousel-slide img {
    height: 300px;
  }

  #boton-info {
    font-size: 0.9em;
    padding: 8px 16px;
  }
}

/* Celulares (pantallas hasta 600px) */
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  nav {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  nav a {
    font-size: 1rem;
  }

  .carousel-container {
    width: 100%;
  }

  .carousel-slide img {
    height: 200px;
  }

  .caption {
    font-size: 0.9em;
    padding: 10px;
  }

  #boton-info {
    font-size: 0.85em;
    padding: 6px 12px;
  }

  footer {
    font-size: 0.9em;
  }
}