@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Verdana;
    overflow-x: hidden; 
    background-color: #181818;
}

header {
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: space-between;
    align-items: center;
    padding: 10px; 
    background-color: #000000;
    color:#FFFFFF;
    position: fixed;
    z-index: 1000;;   
}

.main{
    position:relative;
    margin-top: 2000px;
    
}


.swiper-button-prev::after{
  font-size: 25px;
}

.swiper-button-next::after{
  font-size: 25px;
}

.swiper-button-next{
  color: #5B83BB;
}

.swiper-button-prev{
  color: #5B83BB;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-flex;
  border-radius: 100%;
  background: #D3D2D2; 
  opacity: 1;
}

.swiper-pagination-bullet-active{
  background-color: #5B83BB;
}



.logo-container {
    position: relative;
    display: inline-block;
    width: 50px; /* Ancho del contenedor del logo */
}

.logo-container img {
    display: block;
    width: 100%; 
    height: auto; 
}

.logo-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); 
    transition: background-color 0.3s ease;
}

.logo-container:hover::before {
    content: ''; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20%; 
    background-color: rgba(91, 131, 187, 0.5); 
    z-index: -1; 
}

nav {
    position: relative;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
    margin-right: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
}
.nav-links a:hover{
    color: #5B83BB;
}
.menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 25px;
}

.menu span {
    height: 2px;
    width: 30px;
    background: white;
    margin: 4px;
    transition: all 0.3s ease;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;;
    padding: 20px;
}

.column {
    max-width: 100%; /* Asegura que cada columna no exceda su contenido */
    padding: 0 10px;
}

.links {
    margin-bottom: 10px;
}

.socials {
    display: flex;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  height: 40px;
  width: 40px;
  border: 1px solid #5B83BB;
  border-radius: 50%;
}

.social:hover {
  background-color: #5B83BB;
  }
  
.social img {
  height: 75%; 
  width: 75%;  
}

.logo-RMCompleto{
  width: 100%;
}

.agradecimiento p {
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
  font-size: 10px;
}

.main-content {
margin-top:  5%;
}

  
.slider {
  display: flex;
  align-items: center; 
}
  
.slider-txt {
    margin-left: 2%;
    margin-right: 5%;
    width: 100%;
    text-align: center;
}
  
  
.slider-txt h1{
    font-size: 3vw;
    color: #5B83BB;
    text-transform: uppercase;
    font-weight: bolder;
    position:sticky;
    padding: auto;
}
  
.slider-txt p {
  font-size: 2,5vw;
  color: #FFFFFF;
}
  
.btn-1{
  display: inline-block;
  padding: 10px 15px;
  border: 1px solid #FFFFFF;
  color: #5B83BB;
  font-weight: 1000;
  letter-spacing: 2px;
  text-transform:  uppercase;
  margin-right: 20px;
  border-radius: 50px;
}
  
.btn-1:hover{
    background-color: #FFFFFF;
}

.slider-img img {
  margin: 5%;
  width: 70%;
  height: auto;
  border-radius: 40px;
}


.about-me {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background-color: #181818; /* Mantiene la coherencia con el fondo */
}

.about-me-content {
  max-width: 1000px;
  background: #1f1f1f; 
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  text-align: justify;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-me-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

.about-me-content h1 {
  font-size: 2.5rem;
  color: #5B83BB;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 25px;
  border-bottom: 2px solid #5B83BB;
  padding-bottom: 5px;
  font-weight: 700;
}

.about-me-content p {
  font-size: 2,5vw;
  color: #FFFFFF;/* Texto claro sobre fondo oscuro */
}


.job {
  margin: 30px auto;
  max-width: 1000px;
  padding: 10px 0;
  border-top: 1px solid #5B83BB; /* Línea separadora arriba */
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Para que se adapte en pantallas pequeñas */
}

.job-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #E6E6E6;
  margin: 0;
}

.job-header .date {
  font-size: 0.95rem;
  color: #A0AEC0;
  font-style: italic;
}

.organization {
  margin-top: 5px;
  font-size: 1rem;
  color: #CCCCCC;
  font-style: italic;
}

.about-me-content h2 {
  font-size: 2.5rem;
  color: #5B83BB;
  text-align: center;
  text-transform: uppercase;

}









@media (max-width: 750px){
    .nav-links {
        display: none;
        flex-direction: column;
        width: 200px; 
        background-color: #181818;
        position: fixed; 
        top: 55px; 
        right: 0px; 
        height: 100vh; 
        padding: 60px 0 10px; 
        z-index: 999; 
    }

    .nav-links li {
        margin: 20px 0;
        text-align: center; 
    }

    .menu {
        display: flex;
    }

    .nav-links.active {
        display: flex;
    }

    body.nav-active {
        overflow: hidden; 
    }
    .header-content{
     padding: 30px;
     margin-top: 20px; 
    }
    .slider{
      flex-direction: column;
    }
    .slider-txt{
      margin-left: 0;
      width: 100%;
      text-align: center;
    }
    .slider-txt h1{
      font-size: 50px;
    }
    .slider-txt p{
      font-size: 16px;
    }
    .btn-1{
      padding: 10px 25px;
      font-size: 14;
    }
    .slider-img{
      width: 100%;
      text-align: center;
    }
    .slider-img img{
      margin-right: 0px;
      width: 300px;
    }
  
    .swiper-horizontal > .swiper-pagination-bullets,
    .swiper-pagination-bullets, .swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction{
      bottom: 0px;
    }
    .btn-1{
      font-size: 16px;
    }
    .socials{
      justify-content: center;
    }
    .social img{
      margin: 0px 0 0 0;
    }
    .footer{
      padding: 30px;
      flex-direction: column;
      text-align: center;
    }
    .logo-RMCompleto{
      height: 80px;

    }


}