
    body {
      font-family: 'Segoe UI', Arial, sans-serif;
     
      margin: 0;
      padding: 0;
    }
    
header h1 {
      font-size: 2em;
      margin-bottom: 12px;
      text-align: center;
      color: #f0f1f7;
    }

header img{
width: 15%;
margin-left: 42%;
margin-top: 20px;
}
.container {
width: 80%;
      margin: 0; 
      background: rgba(0,0,0,0.07);
      border-radius: 16px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.07);
      padding: 24px;
  margin-left: 5%;
    }
    .foto-principal {
      width: 90%;
      max-width: 320px;
      border-radius: 12px;
      display: block;
      margin: 0 auto 16px auto;
      box-shadow: 0 1px 8px rgba(0,0,0,0.07);

    }
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

 .foto-principal{
  animation-name: slideInRight;
  animation-duration: 2s;
}


     .info-principal  {
      background-color:  rgba(133, 241, 133, 0.07);
      padding: 5px;
margin-bottom: 0%;
    }

    .info-principal h2 {
      font-size: 1.3em;
      color: #fcfcfc;
      margin-bottom: 8px;
      text-align: center;
    }
    .info-principal ul {
      list-style: none;
    
      margin: 0 0 16px 0;
     } 
   
    
    .info-principal ul li {
      margin: 8px 0;
      font-size: 1em;
      color: #fff;
    }
    .trayectoria, .descripcion, .contacto, .club_actual {
      margin-bottom: 18px;
      margin-left: 10px;
    }
    .trayectoria h3, .descripcion h3, .contacto h3, .club_actual h3, p {
  color: #ededf1;
  font-size: 1.1em;
  margin-bottom: 6px;
}

    .video iframe {
      width: 100%;
      max-width: 350px;
      height: 200px;
      border-radius: 8px;
      display: block;
      margin: 0 auto;
    }
    

    .contacto a {
      display: inline-block;
      background: #25d366;
      color: #fff;
      text-decoration: none;
      padding: 6px 12px;
      border-radius: 8px;
      margin: 4px 0;
      font-weight: bold;
      transition: background 0.2s;
    }
    .contacto a:hover {
      background: #128c7e;
    }
    .video p{
       color: #ededf1;
      font-size: 30px;
      margin-bottom: 6px;
      margin-left: 100px;
   
     }
  
#videoFondo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}


.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 900px;

    margin-bottom: 40px;
    margin-top: 30px;
}
 .gallery { margin-top: 30px !important; margin-bottom: 30px !important; }
.gallery img {
    width: 100%;
    height: 280px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}
.gallery img:hover {
    transform: scale(1.05);
}

.btn-instalar-app {
  background: #007bff;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  font-weight: bold;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-instalar-app:hover {
  background: #0056b3;
}





.compartir {
  margin-top: 0px;
    position: relative;
    display: inline-block;
}
.boton-desplegable {
    background: #f5f5f5;
  margin-bottom: 70px;
  margin-top: 0px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 8px;
    font-size:20px;
    transition: background 0.2s;
}
.boton-desplegable:hover {

    background: #e0e0e0;
}
.boton-desplegable img {
    width: 42px;
    height: 37px;
    margin-right: 8px;
}
.texto-boton {
    display: inline-block;
}

.opciones-compartir {
    position: absolute;
    margin-top: 0px;
    left:10px;
    top: 45px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 10px;
    list-style: none;
    z-index: 10;
    opacity: 0;
    pointer-events: none;

    transition: transform 1.2s cubic-bezier(.4,0,.2,1), opacity 1.2s;
    display: flex;
    flex-direction: row;
    gap: 5px;
}
.compartir.active .opciones-compartir {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(80px);
}
.opciones-compartir li {
    margin-bottom: 0;
}
.opciones-compartir img {
    width: 37px;
    height: 37px;
}

/* Adaptable para pantallas chicas */
@media (max-width: 70px) {
  .boton-desplegable {
    padding: 6px 8px;
    font-size: 0.9rem;
    border-radius: 6px;
  }
  .boton-desplegable img {
    width: 37px;
    height: 37px;
    margin-right: 4px;
  }
  .texto-boton {
    font-size: 0.9rem;
  }
  .opciones-compartir {
    padding: 5px;
    gap: 8px;
  
    top: 38px;
  }
  .compartir.active .opciones-compartir {
    transform: translateX(80px);
  }
  .opciones-compartir img {
    width: 22px;
    height: 22px;
  }
}

.footer-content{
background: #111; 
color: #fff;
 margin-top: 100px; 
 display: flex;
  flex-direction: column;
   align-items: center;
    padding: 24px 0
}

.formulario {
  margin-bottom: 16px;
}
.btn-formulario {
  background: #45e406;
   color: #fff; 
   padding: 10px 24px; 
   border-radius: 5px;
    font-weight: bold;
     font-size: 1.5em;
      transition: background 0.2s; 
      margin-top: 20px
}

@media (max-width: 700px) {
  .btn-formulario {
    padding: 8px 14px !important;
    font-size: 1em !important;
  }
}

@media (max-width: 700px) {
  .btn-suscripcion {
    padding: 8px 14px;
    font-size: 1em;
    width: 90%;
    text-align: center;
  }
}


.btn-formulario:hover {
  background: #1769aa;
}
.btn-instalar-app {
  background: #007bff;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  font-weight: bold;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-instalar-app:hover {
  background: #0056b3;
}

.social-media a {
  color: #ffd600; 
  text-decoration: none;
   margin: 0 12px;
    font-weight: bold; 
    transition: color 0.2s
}
.footer-bottom {
text-align: center;
 margin-top: 12px;
  color: #bbb;
   font-size: 0.95em; 
   padding: 8px 0
}




 body, html {
  overflow-y: auto !important;
  height: auto !important;
}
