* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

body {
  line-height: 1.6;
  color: #fff;
  background-color: #000;
}

/* smooth scroll */
html {
  scroll-behavior: smooth;
}

/* ajustes para Menu */
.nav {
  background-color: #193c78;
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo alineado a la izquierda con margen */
.nav-logo {
  height: 60px;
  margin-left: 100px;
}

/* Menú alineado a la derecha con margen */
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  margin-right: 100px;
}

.nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.nav ul li a:hover {
  color: #f39c12;
}

/* Móvil */

@media only screen and (max-width: 900px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-logo {
    margin-left: 20px;
    height: 50px;
  }

  .nav ul {
    flex-direction: column;
    margin: 10px 0 0 20px;
  }

  .nav ul li a {
    font-size: 14px;
    padding: 5px 0;
  }
}

/* menu mobile */

/* Botón hamburguesa */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  margin-right: 20px;
  cursor: pointer;
}

@media only screen and (max-width: 900px) {
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }

  .nav-logo {
    margin-left: 0;
    height: 42px; /* achicado para mobile */
  }

  .hamburger {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }

  #nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    margin: 10px 0 0 20px;
  }

  #nav-menu.active {
    display: flex;
  }
}


/* ajustes para Menu solo logo */
.nav {
  background-color: #193c78;
  padding: 10px 0;
}
.nav-container {
  display: flex;
  justify-content: center; /* Centra el logo horizontalmente */
  align-items: center;
}
/* Logo centrado y sin márgenes laterales */
.nav-logo {
  height: 60px;
  margin: 0 auto;
}




/* Hero */

.hero {
  background-color: #0D2D64;
  padding: 60px 20px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 20px;
}

.hero .text {
  padding: 0 20px;
}

.hero .text h1 {
  font-size: 2.8rem;
  background-color: #ff9900;
  color: #091f46;
  padding: 5px 25px;
  border-radius: 10px;
  box-shadow: 4px 4px 0px #eee;
  display: inline-block;
  margin-bottom: 15px;
}

.hero .text h2 {
  font-size: 1.5rem;
  margin-top: 8px;
  margin-bottom: 10px;
  color: white;
}

.hero .text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

.hero .image img {
  max-width: 800px;
  height: auto;
  margin: 20px 0;
}

/* cucardas */

.cucardas-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cucarda-item {
  text-align: center;
  max-width: 200px;
}


@media (min-width: 769px) {
  .c2 {
    padding-left: 50px;
    padding-right: 20px;
  }
}


.cucarda-item img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.cucarda-item p {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  line-height: 1.4;
}

/* Hero mobile */ 

@media (max-width: 768px) {
  .hero .text h1 {
    font-size: 1.8rem;
    padding: 5px 15px;
  }

  .hero .text h2 {
    font-size: 1.2rem;
  }

  .hero .image img {
    max-width: 100%;
    height: auto;
  }

  .hero-content {
    padding: 0 10px;
  }
}


@media only screen and (max-width: 768px) {
  .cucardas-container {
    justify-content: flex-start;
    padding-left: 15%;
  }

  .cucarda-item {
    display: flex;
    align-items: center;
    max-width: 100%;
    gap: 15px;
    text-align: left;
  }

  .cucarda-item img {
    width: 60px;
    margin-bottom: 0;
  }

  .cucarda-item p {
    font-size: 1rem;
    margin: 0;
    color: white;
  }
}






/* Benefits */

.benefits {
  background-color: #0D2D64;
  padding: 60px 20px;
  text-align: left;
}

.benefits h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}

@media (max-width: 768px) {
.benefits h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.5rem;
}
} 


.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.card {
  background: #ccc;
  padding: 20px;
  border-radius: 12px;
  max-width: 350px;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
  transition: transform 0.2s;
      display: flex;
      flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
}

.imgtrio {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 2px solid #ff9900; /*orange*/
}

.card h3 {
  color: #0D2D64;
  background-color: #ff9900;
  padding-left: 10px;
  border-radius: 5px;
}



.h4-wrapper {
  text-align: center;
  margin-top: auto;
}

.card h4 {
  font-size: 1rem;
  color: #0D2D64;
  background-color: #ffed00;
  padding: 5px 10px;
  border-radius: 0px 0px 10px 10px;
  display: inline-block;
  text-align: center;
}


.card p {
  font-size: 1rem;
  font-weight: 600;
  color: #0D2D64;
}

.imgoff {
  float: right;
  width: 50px;
  height: auto;
  margin-left: 5px;
  margin-bottom: 5px;
}


.bonus {
  color: #0D2D64;
  border: 2px solid #ccc;
  background-color: #ffc500;
  max-width: 800px;
  padding: 10px;
  padding-top: 20px;
  border-radius: 5px;
  font-weight: 600;
  align-content: center;
  margin: 0 auto;
  text-align: center;
}

.img-bonus {
  float: left;
  width: 65px;
  height: auto;
  margin-left: 5px;
  margin-top: -7px;
}

/* bonus para mobile */
@media (max-width: 768px) {
  .bonus {
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }

  .img-bonus {
    float: none;
    display: block;
    margin: 0 auto 10px auto;
  }
}



/* cursos con enlaces */
.linked-line {
  text-decoration: none;
  color: #0D2D64;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
  transition: color 0.2s;
  cursor: pointer;
}

.fondobonus {
  display: inline-block;
  background-color: #ff9900;
  border: 1px solid yellow;
  padding: 8px 12px;
  border-radius: 4px;
  margin-top: 5px;
  text-decoration: none;
}


.linked-line .bullet {
  font-size: 1.2em;
  line-height: 0; /* corrige alineación vertical */
  display: flex;
  align-items: center;
}

.linked-line .text {
  color: inherit;
  transition: color 0.2s;
}

.linked-line:hover {
  color: #204b95;
}

.linked-line .imgoff {
  float: right;
  width: 50px;
  height: auto;
  margin-left: 5px;
  margin-bottom: 5px;
}

.vermas {
  color: #626262 !important;
  font-size: 0.8rem !important;
}

.vermas:hover {
  color: #204b95 !important;
}





/* Info sections */
.info-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #1c57bf, #091F46);
}

.info-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.info-block.reverse {
  flex-direction: row-reverse;
}

.info-text, .info-image {
  flex: 1 1 500px;
  padding: 20px;
}

.info-text h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #ff9900;
}



.info-text p {
  font-size: 1.2rem;
  color: #fff;
}

.info-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 1);
}



/* Responsivo */
@media (max-width: 768px) {
  .hero-content,
  .info-block {
    flex-direction: column;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }
}

/* Sección Intermedia */
.intermedia {
  background: #fff;
  color: #0D2D64;
  padding: 60px 20px;
}

.intermedia-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

@media (max-width: 768px) {
.intermedia-title {
  text-align: center;
  margin-top: -10px;
  margin-bottom: 25px;
  font-size: 1.5rem;
}
} 

.intermedia-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.intermedia-image {
  flex: 1 1 400px;
  text-align: center;
}

.intermedia-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
}

.intermedia-list {
  flex: 1 1 400px;
  padding: 20px;
  margin-left: 5%;
}

.intermedia-list ul {
  list-style: none;
  padding: 0;
  font-size: 30px;
  line-height: 2;
}

.intermedia-list .icon {
  color: #ff9900;
  margin-right: 10px;
}

.intermedia-txt {
  font-size: 1.4rem;
  line-height: 2rem;
}

@media (max-width: 768px) {
  .intermedia-txt {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }
}


/* intermedia + */
.intermedia-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.intermedia-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #0D2D64;
}

.cucarda {
  width: 120px;
  height: auto;
}


/* botón */
.boton-wrapper {
  text-align: center;
}

.boton-whatsapp {
  background-color: #ff9900;
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.85);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.boton-whatsapp:hover {
  background-color: #ff7605;
  color: #fff;
  box-shadow: 0 6px 12px rgba(0,0,0,1);
}




/* testimonios section */
.testimonios {
  background-color: #fff;
  color: #0D2D64;
  padding: 60px 20px;
  text-align: center;
}

.testimonios h2 {
  margin-bottom: 40px;
  font-size: 2em;
}

@media (max-width: 768px) {
.testimonios h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.5rem;
}
} 

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonio-card {
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  text-align: left;
}

.col-2 {
  grid-column: span 2;
}

.col-3 {
  grid-column: span 3;
}

.comentario {
  font-weight: bold;
  font-size: 0.95em;
  margin-bottom: 15px;
}

.autor {
  text-align: right;
}


/* Testimonios mobile */
@media (max-width: 768px) {
  .testimonios-grid {
    grid-template-columns: 1fr;
  }

  .col-2,
  .col-3 {
    grid-column: span 1;
  }

  .testimonio-card {
    text-align: left; /* opcional: o center para centrar el texto */
  }
}


/* START css footer */
.footer {
  background-color: #05407C;
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.footer .menu li {
  margin-top: 0px;
}

.footer .social-network .fab {
  font-size: 1.2em;
  margin: 10px;
}

.footer .social-network .fab:hover {
  color: #f7b733;
}

.social-network a {
  color: white;
}

.footer .quicklinks .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.quicklinks {
  line-height: 2rem;
}

.footer .social-network {
  margin: 0.1em;
}

.footer h3 {
  font-weight: lighter;
  margin-top: 1em;
  color: #f7b733;
}

/* Responsive para dispositivos móviles */
@media only screen and (max-width: 900px) and (-webkit-min-device-pixel-ratio: 1) {
  .footer {
    flex-direction: column-reverse;
  }

  .footer .quicklinks .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .footer .social-network {
    margin: 0.1em;
  }

  .footer h3 {
    font-weight: lighter;
    margin-top: 1em;
    color: #f7b733;
  }
}
/* END css footer*/


.degrade {
  background: linear-gradient(to bottom, #15479F, #091F46);
}


/* bullets */
.line {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.bullet {
  color: #0D2D64;
  font-size: 1rem;
  margin-right: 8px;
  line-height: 1.4;
}

.text {
  color: #0D2D64;
  font-weight: 600;
  font-size: 1rem;
}
