/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom right, #fff, #e6e6e6);
    color: #222;
    line-height: 1.6;
  }
  
  /* LOGO */
  .logo {
    width: 60px;
    border-radius: 50%;
    animation: rotateLogo 8s linear infinite;
  }
  
  @keyframes rotateLogo {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* HEADER */
  header {
    background: linear-gradient(to right, #000, #444);
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  header h1 {
    text-align: center;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .contenedor-header-header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  
  /* NAV */
  .nav-principal {
    background: #111;
  }
  
  .nav-principal ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0.8rem 0;
  }
  
  .nav-principal a {
    color: #fff;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    margin: 0 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .nav-principal a:hover,
  .nav-principal a.activo {
    background-color: #ff4f00;
    color: #fff;
  }
  
  /* CONTENEDOR GENERAL */
  .contenedor {
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
  }
  
  /* SECCIONES */
  section {
    margin-bottom: 3rem;
  }
  
  section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    border-bottom: 3px solid #ff4f00;
    display: inline-block;
    padding-bottom: 0.3rem;
    animation: fadeIn 1.2s ease-in;
  }
  
  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  /* CARDS PRODUCTOS */
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }
  
  .card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 3px solid #ff4f00;
  }
  
  .card h3 {
    text-align: center;
    margin: 1rem 0 0.5rem;
    color: #111;
  }
  
  .card p {
    text-align: center;
    color: #555;
    padding: 0 1rem;
    margin-bottom: 1rem;
  }
  
  /* BOTÓN */
  .boton-reserva,
  button {
    display: inline-block;
    background: #ff4f00;
    color: #fff;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  }
  
  .boton-reserva:hover,
  button:hover {
    background: #d83b00;
    transform: scale(1.05);
  }
  
  /* FORMULARIO */
  form.formulario {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  form label {
    font-weight: bold;
  }
  
  form input,
  form textarea {
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  form button {
    width: fit-content;
  }
  
  /* FOOTER */
  footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  footer a {
    color: #ff4f00;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  .footer-copy {
    margin-top: 1rem;
    font-size: 0.9rem;
  }
  
  /* VIDEO */
  .video-container iframe {
    width: 100%;
    height: 315px;
    border: none;
    border-radius: 12px;
  }
  
  /* RESPONSIVE */
  @media (max-width: 600px) {
    .nav-principal ul {
      flex-direction: column;
      align-items: center;
    }
  
    .contenedor-header-header-container {
      flex-direction: column;
      gap: 0.5rem;
    }
  
    header h1 {
      font-size: 1.5rem;
    }
  }
  