
    /* Estilos generales */
    body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      color: #333;
      line-height: 1.6;
      background-color: #f8fafc;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    
    /* Header */
    .header {
      background-color: #fff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      padding: 15px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    
    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .logo {
      height: 60px;
    }
    
    .nav-links a {
      margin: 0 15px;
      text-decoration: none;
      color: #2563eb;
      font-weight: 600;
      transition: color 0.3s;
    }
    
    .nav-links a:hover {
      color: #1d4ed8;
    }
    
    .btn-primary {
      background-color: #2563eb;
      color: white;
      padding: 10px 20px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      transition: background-color 0.3s;
      border: none;
      cursor: pointer;
    }
    
    .btn-primary:hover {
      background-color: #1d4ed8;
    }
    
    /* Formulario de reservas */
    .reserva-section {
      padding: 50px 0;
    }
    
    .reserva-card {
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .reserva-header {
      background-color: #2563eb;
      color: white;
      padding: 20px;
      display: flex;
      align-items: center;
    }
    
    .reserva-header img {
      height: 50px;
      margin-right: 15px;
    }
    
    .reserva-header h2 {
      margin: 0;
      font-size: 24px;
    }
    
    .reserva-form {
      padding: 30px;
    }
    
    .form-group {
      margin-bottom: 25px;
    }
    
    .form-group h3 {
      font-size: 18px;
      margin-bottom: 15px;
      color: #1e293b;
    }
    
    .form-control {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #e2e8f0;
      border-radius: 6px;
      font-size: 16px;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    
    .form-control:focus {
      outline: none;
      border-color: #2563eb;
      box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
    }
    
    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }
    
    .precio-display {
      background-color: #f1f5f9;
      padding: 12px 15px;
      border-radius: 6px;
      font-weight: 600;
      display: flex;
      align-items: center;
    }
    
    .btn-submit {
      width: 100%;
      padding: 15px;
      background-color: #2563eb;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    
    .btn-submit:hover {
      background-color: #1d4ed8;
    }
    
    .resultado-reserva {
      margin-top: 20px;
      padding: 20px;
      background-color: #f0fdf4;
      border: 1px solid #bbf7d0;
      border-radius: 6px;
      display: none;
    }
    
    .resultado-reserva p {
      margin: 0 0 10px 0;
      font-weight: 600;
    }
    
    .numero-reserva {
      font-weight: 700;
      color: #2563eb;
      font-size: 18px;
      background-color: white;
      padding: 10px 15px;
      border-radius: 6px;
      display: inline-block;
      margin-bottom: 15px;
      border: 1px solid #dbeafe;
    }
    
    .error-reserva {
      margin-top: 20px;
      padding: 20px;
      background-color: #fef2f2;
      border: 1px solid #fecaca;
      border-radius: 6px;
      display: none;
      color: #dc2626;
    }
    
    /* Footer */
    .footer {
      background-color: #1e293b;
      color: white;
      padding: 40px 0;
      margin-top: 50px;
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }
    
    .footer-section h3 {
      font-size: 18px;
      margin-bottom: 20px;
      color: white;
    }
    
    .footer-section p, .footer-section a {
      color: #cbd5e1;
      margin-bottom: 10px;
      display: block;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-section a:hover {
      color: white;
    }
    
    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 15px;
    }
    
    .social-icons a {
      color: white;
      font-size: 20px;
      transition: transform 0.3s;
    }
    
    .social-icons a:hover {
      transform: translateY(-3px);
    }
    
    .copyright {
      text-align: center;
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid #334155;
      color: #94a3b8;
      font-size: 14px;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .grid-2 {
        grid-template-columns: 1fr;
      }
      
      .header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
      }
      
      .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
      }
      
      .reserva-header {
        flex-direction: column;
        text-align: center;
      }
      
      .reserva-header img {
        margin-right: 0;
        margin-bottom: 10px;
      }
      
      .reserva-form {
        padding: 20px;
      }
    }
    
    @media (max-width: 480px) {
      .nav-links a {
        margin: 0 8px;
        font-size: 14px;
      }
      
      .btn-primary {
        padding: 8px 15px;
        font-size: 14px;
      }
    }

    /* Estilos del header */
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }
    .header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 20px;
      position: relative;
      z-index: 100;
      background-color: white;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .logo, .mtc {
      height: 80px;
    }
    .social-icons {
      display: flex;
      gap: 15px;
    }
    .social-icons img {
      width: 30px;
      margin: 0 5px;
      transition: transform 0.3s;
    }
    .nav-links a {
      margin: 0 10px;
      text-decoration: none;
      color: #007bff;
      font-weight: bold;
    }
    .nav-links a:hover {
      text-decoration: underline;
    }
    .boton-cita {
      background-color: #007bff;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
    }
    .boton-cita:hover {
      background-color: #0056b3;
    }

    /* Estilos del carrusel */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    .carrusel-container {
      position: relative;
      width: 100%;
      height: calc(100vh - 120px);
      max-height: 600px;
      min-height: 400px;
    }
    
    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      background-size: cover;
      background-position: center;
    }
    
    .slide.active {
      opacity: 1;
    }
    
    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    /* Botones de navegación */
    .prev, .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;
      padding: 16px;
      color: white;
      font-weight: bold;
      font-size: 24px;
      transition: 0.3s;
      background-color: rgba(0,0,0,0.3);
      border-radius: 50%;
      user-select: none;
      z-index: 10;
    }
    
    .next {
      right: 20px;
    }
    
    .prev {
      left: 20px;
    }
    
    .prev:hover, .next:hover {
      background-color: rgba(0,0,0,0.8);
    }
    
    /* Indicadores */
    .indicadores {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      z-index: 10;
    }
    
    .indicador {
      width: 12px;
      height: 12px;
      margin: 0 5px;
      border-radius: 50%;
      background-color: rgba(255,255,255,0.5);
      cursor: pointer;
      transition: background-color 0.3s;
    }
    
    .indicador.active {
      background-color: white;
    }
    
    /* Botones del carrusel */
    .carrusel-botones {
      position: absolute;
      bottom: 80px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 20px;
      z-index: 10;
      flex-wrap: wrap;
      justify-content: center;
      width: 100%;
      padding: 0 20px;
    }
    
    .boton-crear-cita {
      background-color: #4da6ff;
      color: white;
      padding: 12px 25px;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      font-size: 16px;
      transition: background-color 0.3s;
      white-space: nowrap;
    }
    
    .boton-crear-cita:hover {
      background-color: #3a8ae6;
    }
    
    .boton-whatsapp {
      background-color: #25D366;
      color: white;
      padding: 12px 25px;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      font-size: 16px;
      transition: background-color 0.3s;
      white-space: nowrap;
    }
    
    .boton-whatsapp:hover {
      background-color: #1da851;
    }

    /* Burbujas flotantes */
    .floating-buttons {
      position: fixed;
      bottom: 30px;
      right: 30px;
      display: flex;
      flex-direction: column;
      gap: 1px;
      z-index: 999;
    }
    
    .floating-button {
      width: 100px;
      height: 100px;
      border-radius: 100%; 
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .floating-button:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }
    
    .floating-button img {
      width: 100px;
      height: 100px;
    }

    /* Texto en el carrusel */
    .carrusel-texto {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      z-index: 10;
      width: 100%;
      padding: 0 20px;
    }
    
    .carrusel-texto h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .carrusel-texto p {
      font-size: 1.5rem;
      margin-top: 0;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    /* Media queries para el carrusel */
    @media (max-width: 768px) {
      .carrusel-container {
        height: 60vh;
        min-height: 300px;
      }
      
      .carrusel-texto h1 {
        font-size: 2rem;
      }
      
      .carrusel-texto p {
        font-size: 1.2rem;
      }
      
      .carrusel-botones {
        bottom: 60px;
        gap: 10px;
      }
      
      .boton-crear-cita, 
      .boton-whatsapp {
        padding: 10px 15px;
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
      .carrusel-container {
        height: 50vh;
        min-height: 250px;
      }
      
      .carrusel-texto h1 {
        font-size: 1.5rem;
        line-height: 1.3;
      }
      
      .carrusel-texto p {
        font-size: 1rem;
      }
      
      .carrusel-botones {
        bottom: 40px;
        flex-direction: column;
        align-items: center;
        gap: 8px;
      }
      
      .boton-crear-cita, 
      .boton-whatsapp {
        width: 90%;
        max-width: 250px;
        padding: 10px;
        font-size: 14px;
      }
      
      .prev, .next {
        padding: 12px;
        font-size: 18px;
      }
      
      .indicador {
        width: 10px;
        height: 10px;
      }
      
      .floating-button {
        width: 50px;
        height: 50px;
      }
      
      .floating-button img {
        width: 30px;
        height: 30px;
      }
    }