 body {
     margin: 0;
     padding: 0;
     font-family: 'Arial', sans-serif;
     background-image: url('images/EMLDesktop.png');
     background-size: contain;
     background-position: center;
     background-repeat: no-repeat;
     background-position: top center;
     background-attachment: fixed;
     background-color: #ccc;
     height: 100vh;

 }


 .form-container {
     position: fixed;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     backdrop-filter: blur(7px);
     background-color: rgba(255, 255, 255, 0.15);
     border-radius: 15px;
     padding: 5px;
     max-width: 400px;
     width: 70%;
     box-shadow: 40px 8px 32px rgba(0, 0, 0, 0.3);
     color: #fff;
     border: 1px solid rgba(255, 255, 255, 0.3);
     z-index: 20;
 }



 .form-container h2 {
     text-align: center;
     margin-bottom: 20px;
     color: #fff;
 }

 .form-container input,
 .form-container textarea {
     width: 100%;
     padding: 8px;
     margin-bottom: 10px;
     border: none;
     border-radius: 8px;
     background-color: rgba(255, 255, 255, 0.1);
     color: #fff;
     font-size: 14px;
 }

 .form-container input::placeholder,
 .form-container textarea::placeholder {
     color: #ccc;
 }

 .form-container button {
     width: 100%;
     padding: 12px;
     background-color: #ff6600;
     border: none;
     border-radius: 8px;
     color: #fff;
     font-size: 10px;
     cursor: pointer;
     transition: background 0.3s ease;
 }

 .form-container button:hover {
     background-color: transparent;
     border: 2px solid #ff6600;
 }

 footer {
     position: absolute;
     bottom: 10px;
     width: 100%;
     text-align: center;
     color: #fff;
     font-size: 14px;
     text-shadow: 1px 1px 2px black;
 }

 .sidebar {
     display: flex;
     flex-direction: row;
     justify-content: center;
     gap: 10px;
     position: absolute;
     top: 5px;
     left: 0;
     right: 0;
     z-index: 10;
 }

 .sidebar button {
     font-size: 14px;
     padding: 8px 14px;
     border-radius: 20px;
     background-color: white;
     border: 1px solid #ccc;
     color: #333;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .sidebar button:hover {
     background-color: #f1f1f1;
 }

 .content {
     flex: 1;
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
 }


 .main {
     display: flex;
     height: 100vh;
     width: 100%;
     position: relative;
 }


 .modal {
     position: fixed;
     top: 0;
     left: 0;
     height: 100vh;
     width: 100vw;
     background-color: rgba(0, 0, 0, 0.6);
     backdrop-filter: blur(5px);
     display: none;
     justify-content: center;
     align-items: center;
     z-index: 999;
 }

 .modal-content {
     background-color: rgba(255, 255, 255, 0.15);
     padding: 20px 30px;
     border-radius: 15px;
     color: #fff;
     text-align: center;
     border: 1px solid rgba(255, 255, 255, 0.2);
     max-width: 400px;
     box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
 }

 .modal-content h3 {
     margin-bottom: 10px;
     font-size: 20px;
 }

 .modal-content button {
     margin-top: 20px;
     padding: 8px 16px;
     background-color: #ff6600;
     border: none;
     border-radius: 8px;
     color: white;
     cursor: pointer;
     font-size: 14px;
 }

 .modal-content button:hover {
     background-color: transparent;
     border: 2px solid #ff6600;
 }

 .equipo-scroll {
     display: flex;
     gap: 20px;
     overflow-x: auto;
     padding: 10px;
     margin-top: 20px;
     scroll-snap-type: x mandatory;
 }

 .equipo-scroll::-webkit-scrollbar {
     height: 8px;
 }

 .equipo-scroll::-webkit-scrollbar-thumb {
     background: rgba(255, 102, 0, 0.7);
     border-radius: 4px;
 }

 .equipo-card {
     flex: 0 0 auto;
     width: 200px;
     background-color: rgba(0, 0, 0, 0.4);
     border-radius: 12px;
     padding: 10px;
     text-align: center;
     color: #fff;
     backdrop-filter: blur(3px);
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
     scroll-snap-align: start;
 }

 .equipo-card img {
     width: 100%;
     height: auto;
     border-radius: 8px;
     margin-bottom: 10px;
 }

 .equipo-card h4 {
     margin: 5px 0;
     font-size: 16px;
 }

 .equipo-card p {
     font-size: 13px;
     line-height: 1.4;
 }

 @media (max-width: 768px) {
     body {
         background-image: url('images/EMLMobile.png');
         background-size: contain;
         background-position: center;
         background-repeat: no-repeat;
         background-attachment: scroll;
         height: auto;
     }

   .form-container {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 480px;
        padding: 15px;
        border-radius: 15px 15px 0 0;
        backdrop-filter: none;
        background-color: rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.6);
        z-index: 999;
    }

    .form-container h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .form-container input,
    .form-container textarea {
        font-size: 14px;
        padding: 8px;
    }

    .form-container button {
        font-size: 14px;
        padding: 12px;
    }
     .sidebar {
         display: flex;
         justify-content: center;
         align-items: center;
         flex-wrap: wrap;
         position: absolute;
         top: 5px;
         left: 0;
         right: 0;
         gap: 8px;
         padding: 10px 0;
         z-index: 999;
         background: none;
     }

     .sidebar button {
         background-color: white;
         color: black;
         border: 1px solid #ccc;
         border-radius: 20px;
         padding: 8px 14px;
         font-size: 13px;
         cursor: pointer;
         transition: background 0.3s ease;
     }

     .sidebar button:hover {
         background-color: #f1f1f1;
     }

     .modal-content {
         width: 90%;
         font-size: 14px;
         padding: 15px;
     }

     .modal-content button {
         font-size: 13px;
         padding: 6px 12px;
     }

     .equipo-card {
         width: 150px;
         padding: 8px;
     }

     .equipo-card h4 {
         font-size: 14px;
     }

     .equipo-card p {
         font-size: 12px;
     }

     footer {
         font-size: 12px;
         margin-top: 30px;
         position: fixed;
         bottom: 0;
     }
 }