
   @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');
    * { box-sizing: border-box; }
   
    html, body {
      margin: 0; padding: 0;
      height: 100%;
      background-image: url('fondo.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      font-family: 'Orbitron', sans-serif;
      color: white;
      overflow-x: hidden;
    }

    .logo {
      max-width: 300px;
      display: block;
      margin: 30px auto 10px;
    }

    h1 {
      text-align: center;
      margin: 20px 0;
    }

    .carousel-container {
      width: 90%;
      max-width: 300px;
      margin: 30px auto;
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }

    .carousel-slide {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .carousel-slide img {
      width: 100%;
      flex-shrink: 0;
      border-radius: 15px;
      cursor: pointer;
    }

    .carousel-buttons {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      padding: 0 10px;
      pointer-events: none;
    }

    .carousel-buttons button {
      background-color: rgba(0, 0, 0, 0.5);
      border: none;
      color: white;
      font-size: 2rem;
      padding: 10px;
      cursor: pointer;
      border-radius: 50%;
      pointer-events: all;
    }

    .social-buttons {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      margin: 30px 0;
    }

    .social-button {
      text-decoration: none;
      color: white;
      padding: 15px 30px;
      border-radius: 12px;
      font-size: 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      width: 270px;
      justify-content: center;
      background: linear-gradient(145deg, #666, #999);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    }

    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
    }

    .whatsapp-float img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
    }

  
    .modal {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .modal img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 10px;
      cursor: pointer;
    }

    .modal-buttons {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      transform: translateY(-50%);
    }

    .modal-buttons button {
      background: rgba(0, 0, 0, 0.6);
      border: none;
      color: white;
      font-size: 2.5rem;
      border-radius: 50%;
      cursor: pointer;
    }

    @media (max-width: 800px) {
      .social-button { width: 90%; font-size: 16px; }
    }
