body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #ffffff;
  color:  #1b225f;
  overflow-x: hidden;
}

p {
  line-height: 1.5;
}


.navbar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: #ffffff;
  padding: 15px 0;
  width: 100vw;
  /* position: fixed; */
}

.logo {
  width: 22vw;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  color:  #1b225f;
  text-decoration: none;
  font-size: 1.2vw;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;            
  width: 0;                  
  height: 0.5px;               
  background-color: #606060; 
  transition: width 0.4s ease;
}

.nav-links a:hover::after {
  width: 100%;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
  margin-bottom: 3%;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #1b225f;
  border-radius: 2px;
}

/* main */

/* objetivo */

.divObjetivo{
  min-height: calc(100vh - var(--header-height));
  background-color: #1b225f;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 10vh 5vw 0 5vw;
  box-sizing: border-box;
  justify-content: space-between;
}

.pObjetivo{
    color: #ffffff;
    font-weight: 500;
    font-size: clamp(16px, 1.3vw, 22px);
    line-height: 1.6;
    max-width: 1000px;
    text-align: center;
    padding-top: 8vh;
    padding-bottom: 3vh;
    margin-top: 0;
}
.pObjetivoDos{
    color: #ffffff;
    font-weight: 500;
    font-size: clamp(16px, 1.3vw, 22px);
    line-height: 1.6;
    max-width: 1000px;
    text-align: center;
    padding-top: 1vh;
    padding-bottom: 1vh;
    margin-top: 0;
}

.imgObjetivo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.imgObjetivo img {
  max-height: 90px;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  flex-shrink: 1;
  margin-bottom: 2%;
}

.questions-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
  gap: 18px;
}

.question-card {
  background-color: #ffffff;
  padding: 1px 18px;
  min-height: 80px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 16px;
  font-weight: 700;
  color: #46ba43;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  flex: 0 1 45%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  
}
.question-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 70%;
  height: 2px;
  background-color: #cbf3ca;
  transition: transform 0.3s ease;
}

.question-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  color: #cbf3ca;
}

.question-card:hover::after {
  transform: translateX(-50%) scaleX(1);
}


.divBarra{
  width: fit-content;
  height: 4vh;
  overflow: hidden;
}
.barra{
    width: 100vw;
    height: 4vh;
    overflow: hidden;
  }

/* equipo */

.divEquipo{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
}

.tituloEquipo {
  color: #46ba43;
  font-weight: 800;
  font-size: clamp(2rem, 2.5vw, 3.8rem); 
  text-align: center;
  margin-top: 10vh;
  margin-bottom: 2rem;
}


.pEquipo {
  color: #1b225f;
  font-weight: 500;
  font-size: clamp(1rem, 1.3vw, 1.5rem); 
  max-width: 900px; 
  text-align: center;
  line-height: 1.6;
  margin: 0 auto 3rem auto; 
  padding: 0 1.5rem; 
}


.divCards{
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-bottom: 5vw;
}
.card {
  background-color: #fff;
  width: 280px;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  margin: 0 40px 50px 40px;
}

.card:hover {
  transform: translateY(-5px);
}

.card-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #46ba43;
  transition: transform 0.3s ease;
}

.card-img:hover {
  transform: scale(1.05);
}

.card-title {
  font-size: 1.3vw;
  font-weight: 700;
  color:  #372e79;
  margin-bottom: 8px;
}

.card-text {
  font-size: 1vw;
  color: #1b225f;
  margin-bottom: 12px;
  line-height: 1.5;
}

.extra-info {
  font-size: 1vw;
  color:  #1b225f;
  line-height: 1.4;
  display: none;
  margin-bottom: 15px;
}

.card-btn {
  background-color: #76da73;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 1vw;
  padding: 8px 16px;
}

.card-btn:hover {
  background-color: #cbf3ca;
}


/* LOGO */ 
.divLogo{ 
  min-height: 100vh;
  width: 100vw; 
  display: flex; 
  flex-direction: column; 
  justify-content: start; 
  align-items: start; 

} 
.tituloLogo{ 
  color: #46ba43; 
  font-weight: 800; 
  font-size: 2vw; 
  padding-left: 10vw; 
} 
.divLogoParrafos{ 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
} 
.pLogoUno{ 
  color: #1b225f; 
  font-weight: 500; 
  font-size: 1.1vw; 
  padding-left: 10vw; 
  padding-right: 10vw;
  margin-bottom: 0%; 
} 
.pLogoDos{ 
  color: #1b225f; 
  font-weight: 500; 
  font-size: 1.1vw; 
  padding-right: 10vw; 
  padding-left: 10vw; 
} 
.divParrafosyLogo{ 
  display: flex; 
  flex-direction: row; 
  justify-content: center;
  align-items: center;
} 
.imgLogo{ 
  width: 430px; 
  height: 430px; 
  padding-right: 10vw; 
}


/* VIDEO */



.video {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;       
}

.video-card {
  background: #1b225f;
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(55,46,121,0.06);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;   
  gap: 10px;
  transition: transform .28s ease, box-shadow .28s ease;
  width: 80vw;         
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(55,46,121,0.09);
}

.video-thumb,
.video-iframe-container {
  width: 80vw;             
  height: 80vh;           
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  font-size: 1vw;
  color: white;
  background: rgba(0, 0, 0, 0.45);
  border: none;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  backdrop-filter: blur(2px);
  transition: transform .25s ease;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
}

.video-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-meta {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2vw;
}

.read-link {
  color: #76da73;
  font-weight: 700;
  text-decoration: none;
  font-size: 1vw;
  position: relative;
  transition: color 0.3s ease;
  width: fit-content;
  margin: auto;
}

.read-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 1px;
  background-color: #cbf3ca;
  transition: transform 0.3s ease;
}

.read-link:hover {
  color: #cbf3ca;
}

.read-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}


@media screen and (max-width: 768px){

body {
  margin: 0;
  font-family: "Monserrat", sans-serif;
  background-color: #ffffff;
  overflow-x: hidden;
  width: 100vw;
}
main{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
}

  /* navbar */

  .navbar {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 3%;
    margin-bottom: 3%;
  }

  .nav-top {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
  }


  .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: auto;
    z-index: 1;
  }

  .hamburger {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 18px;
    cursor: pointer;
    z-index: 2;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #1b225f;
    border-radius: 2px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 100;
  }

  .nav-links a {
    position: relative;
    color: #1b225f;
    text-decoration: none;
    font-size: 5vw;
    margin: 5px 0;
    transition: color 0.3s;
  }

  .nav-links.active {
    display: flex;
    width: 100%;
  }


  /* OBJETIVO */

  .divObjetivo{
    padding-left: 5vw;      
    padding-right: 5vw;
  }

  .pObjetivo{
    font-size: 5vw;
  }
  .pObjetivoDos{
    font-size: 5vw;
  }

  .questions-container {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }

  .question-card {
    flex: 0 1 90%;
    font-size: 16px;
    min-height: 70px;
    width: 90%;
  }

  .divEquipo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
  }
  .tituloEquipo{
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    margin-top: 5vh;
    margin-bottom: 1.5rem;
  }
  .pEquipo{
    font-size: clamp(0.95rem, 3.8vw, 1.2rem);
    padding: 0 1rem;
    max-width: 95%;
    margin-bottom: 2.5rem;
    text-align: center;
  }

  .divCards{
    flex-direction: column;
    align-items: center;
    padding-bottom: 3rem;
  }
  .card {
    width: 85%;
    max-width: 380px;
    margin: 0 auto 2rem auto;
    padding: 20px;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  .card-img {
    width: 150px;
    height: 150px;
    margin-bottom: 12px;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-text {
    font-size: 0.95rem;
  }

  .extra-info {
    font-size: 4vw;
    color:  #1b225f;
    line-height: 1.4;
    display: none;
    margin-bottom: 15px;
  }

  .card-btn {
  padding: 8px 16px;
  font-size: 0.9rem;
  }

  .imgObjetivo{
    margin-bottom: 5vh;
  }

  /* LOGO */

.divLogo{
  width: 95%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2vh; 
  margin-bottom: 2vh; 
}

.tituloLogo{
  color:  #46ba43;
  font-weight: 800;
  font-size: 6.5vw; 
  text-align: center; 
  padding: 0 5vw; 
}

.divParrafosyLogo{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3vh; 
}

.divLogoParrafos{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2vh; 
}

.pLogoUno, .pLogoDos{
  color:  #1b225f;
  font-weight: 500;
  font-size: 4.8vw; 
  text-align: justify;
  padding: 0 5vw;
  line-height: 1.5; 
}

.pLogoDos{
  margin-bottom: 3vh; 
}

.imgLogo{
  width: 55vw;
  height: auto;
  padding-top: 0%;
  padding-right: 0%;
  margin-bottom: 2vh;
}


.video {
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95%;
}

.video-card {
  background: #1b225f;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;   
  gap: 8px;
  transition: transform .28s ease, box-shadow .28s ease;
  width: 100%;       
  margin-top: 10vh;  
  margin-bottom: 10vh;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(55,46,121,0.08);
}

.video-thumb,
.video-iframe-container {
  width: 100%;             
  height: auto; 
  aspect-ratio: 16/9;     
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  font-size: 36px;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-meta {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  margin-top: 5px;
}

.read-link {
  font-size: 15px;
  margin-top: 5px;
}


}