/* //////////////////////
   GENERALES Y MENÚ
   ///////////////////*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  background-color: #1c3c50;
  font-family: 'Montserrat', sans-serif;
}

header {
  background-color: #102a3a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: relative;
}

h2{
  color: #fff;
  font-size: 2.5em;
  display: block;

}

.logo img {
  height: 50px;
}

nav {
  display: flex;
  align-items: center;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu li:first-child{
  display: none;
  text-align: right;
}

.menu li {
  position: relative;
}

.menu li a {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.menu li a:hover {
  background-color: #1a76d1;
}

.menu li a.active {
  background-color: #1a76d1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
}

@media (max-width: 768px) {

  .menu li:first-child{
    display: block;
    font-weight: bold;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 53px;
    right: 18px;
    background-color: #f0f0f0;
    padding: 20px 10px;
    width: 200px;
    border-radius: 10px;
    z-index: 5000;
  }

  .menu li a{
    color: #102a3a;
  }

  .menu li a:hover {
    color: #fff;
  }

  .menu li a.active {
    color: #fff;
  }

  .menu.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

/* ////////////////
   INTRO
   //////////////*/

.section1 {
  background-color: #102a3a;
  height: 95vh;
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  min-width: 95%;
}

.section-1-titles, .section-1-dashboard{
  z-index: 1500;
  max-width: 45%;
  width: 45%;
  padding-top: 30px;
}

.section-1-titles h1{
  color: #fff;
  font-size: 2.5em;
  margin-top: 50px;
}

.section-1-titles p{
  color: #fff;
  font-size: 1.1em;
  line-height: 1.5em;
  margin-top: 15px;
}

.tags p{
  display: inline-block;
  font-size: 12px;
  color: #fff;
  background-color: #2c3e50;
  border-radius: 8px;
  padding: 10px 20px;
}

.tags p:nth-child(2){
  margin: 0 5px;
}

.tags i{
  margin-right: 5px;
}

.section-1-dashboard{
  text-align: center;
}

.section-1-dashboard img{
  width: 80%;
}

.wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
  line-height: 0;
}


/* ////////////////
   BENEFICIOS
   //////////////*/

.section2{
  position: relative;
  text-align: center;
  margin: auto;
  margin-top:90px;
  width: 95%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 10%, transparent 60%),
                    radial-gradient(circle, rgba(255, 255, 255, 0.07) 10%, transparent 50%);
  background-position: 20% 30%, 90% 0%; /* Posiciones de los destellos */
  background-repeat: no-repeat;
  background-size: 350px 350px, 300px 300px; /* Tamaños de los destellos */
  padding-bottom: 110px;
}

.imagen-entre-secciones {
  position: absolute;
  top: 70%; /* Posiciona la imagen justo donde termina section1 */
  left: 50%; /* Centra la imagen horizontalmente */
  transform: translateX(-50%); /* Ajusta la imagen para que quede centrada */
  z-index: 1000; /* Asegúrate de que la imagen esté por encima de ambos divs */
  width: 35%;
}

.section2 h2{
  margin-bottom: 20px;
}

.section2 h3{
  color: #fff;
  font-size: .8em;
  background-color: #1a76d1;
  padding: 8px 15px;
  display: inline-block;
  border-radius: 8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section2 p{
  color: #fff;
  font-size: 1.2em;
  line-height: 1.5em;
  display: block;
  margin: auto;
  width: 80%;
}

.beneficios{
  display: flex;
}

.beneficios-info{
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 15px;
  margin: 10px;
  margin-top: 20px;
  text-align: left;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  width: 25%;
}

.beneficios-info h4{
  font-size: 1.2em;
  color: #1c3c50;
  height: 50px;
}

.beneficios-info p{
  color: #242424;
  font-size: .9em;
  font-weight: 500;
  margin:0;
  margin-top:10px;
  width: 100%;
}

.beneficios-info i{
  color: #1c3c50;
  font-size: 2em;
  margin-bottom: 20px;
}


/* ////////////////
   PLATAFORMA
   //////////////*/

.imagen-entre-secciones-2 {
  position: absolute;
  top: calc(228% - 50px); /* Ajusta la imagen entre section2 y plataforma */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.plataforma{
  position: relative;
  background-color: #f5f5f5;
  padding-bottom: 50px;
}

.plataforma-info{
  margin: auto;
  width: 90%;
  padding: 20px;
  text-align: center;
}

.plataforma-info h2{
  color: #1c3c50;
  margin-bottom: 20px;
}

.plataforma-info h3{
  color: #fff;
  font-size: .8em;
  background-color: #1a76d1;
  padding: 8px 15px;
  display: inline-block;
  border-radius: 8px;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 250px;
}

.plataforma-info p{
  font-size: 1.2em;
  line-height: 1.5em;
  color: #242424;
}

.plataforma-info img{
  position: absolute;
  top: 0; 
  right: 30%; 
}

/* ////////////////
   INICIAR
   //////////////*/

.iniciar{
  margin: auto;
  width: 98%;
  text-align: center;
}

.iniciar h2{
  display: block;
  margin: auto;
  font-size: 2em;
  width: 60%;
  color: #1c3c50;
  font-weight: normal;
  margin-bottom: 15px;
}

.iniciar p{
  display: block;
  margin: auto;
  text-align: center;
  font-size: 1em;
  width: 80%;
  color: #242424;
  font-weight: 500;
  line-height: 1.5em;
}

.iniciar a{
  display: inline-block;
  background-color: #1c3c50;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: bold;
}

.iniciar a i{
  margin-left: 5px;
  background-color: none;
}


/* ////////////////
   QUE ESPERAR
   //////////////*/

.esperar{
  background-color: #102a3a;
  text-align: center;
  padding: 20px 0;
  color: #fff;

  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 10%, transparent 60%),
                    radial-gradient(circle, rgba(255, 255, 255, 0.07) 10%, transparent 50%);
  background-position: 20% 30%, 90% 0%; /* Posiciones de los destellos */
  background-repeat: no-repeat;
  background-size: 350px 350px, 300px 300px; /* Tamaños de los destellos */
}

.esperar-intro{
  background-color: #f5f5f5;
  color: #1c3c50;
  font-weight: 500;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.esperar-info{
  width: 80%;
  margin: auto;
}

.esperar-info h2{
  margin-bottom: 20px;
}

.esperar-info p{
  line-height: 1.5em;
  margin-bottom: 10px;
}

.esperar .tags{
  margin-top: 30px;
}

.esperar img{
    width: 500px;
  }

.fa-p2{
  border-top:1px solid #184059;
  padding-top: 20px;
}

.esperar ul{
  display: inline-block;
  margin:auto;
  text-align: left;
  left: 50%;
  padding-bottom: 30px;
  padding-top: 10px;
}

.fa-list2 {
  list-style-type: none; /* Elimina los bullets predeterminados */
  padding-left: 0; /* Elimina la sangría predeterminada de la lista */
}

.fa-list2 li {
  position: relative;
  padding-left: 25px;
  line-height: 1.8em;
}

.fa-list2 li::before {
  content: "\f00c"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #1a76d1; 
  position: absolute;
  left: 0;
  top: 0;
}


/* ////////////////
   CONTACTO
   //////////////*/

.contacto{
  text-align: center;
  padding: 60px 20px;
}

.contacto h3{
  color: #fff;
  font-size: .8em;
  background-color: #1a76d1;
  padding: 8px 15px;
  display: inline-block;
  border-radius: 8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contacto h4{
  color: #fff;
  font-size: 1em;
  text-transform: uppercase;
  margin-top: 25px;
}

.contacto p{
  display: inline-block;
  margin: auto;
  width: 55%;
  font-size: 1.1em;
  line-height: 1.5em;
  margin-top: 10px;
  color: #fff;
  padding-bottom: 30px;
}

.contacto  h2{
  color: #fff;
}

.contacto form{
  margin: auto;
  width: 60%;
  margin-top: 30px;
  text-align: left;
}

.contacto-datos{
  border-top: 1px solid #509be4;
}

.contacto-datos a{
  color: #fff;
  display: inline-block;
  padding: 20px;
  text-decoration: none;
  margin-top:30px;
}

.contacto-datos a:hover{
  color: #1973cb;
}

.contacto small{
  display: block;
  color: #509be4;
  font-size: .9em;
  line-height: 1.5em;
}

/*

label {
    color: #fff;
    font-size: 0.9em;
    margin-bottom: 5px;
    display: block;
}

input[type="text"], input[type="email"], input[type="tel"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus {
    border-color: #1a76d1;
    outline: none;
}

input[type="submit"] {
    width: 100%;
    background-color: #1a76d1;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 1.2em;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

input[type="submit"]:hover {
    background-color: #155a9d;
}

input[type="submit"]:active {
    background-color: #0f3e6b;
}

*/

.logo-footer{
  width: 130px;
  margin-top: 30px;
}

.p-interests{
  display: none;
}

#optin-iGzNmPTw{
  margin: auto;
  width: 50%;
}

div.p-body, .p-optin#optin-form-iGzNmPTw{
  display: inline-block;
  margin: auto;
  width: 100%;
}

.p-optin#optin-form-iGzNmPTw div.p-body p:not(.p-error-message):not(.p-title), .p-optin#optin-form-iGzNmPTw div.p-body .p-success, .p-optin#optin-form-iGzNmPTw div.p-body label, .p-perfit-ad a{
  margin: auto;
  width: 100%;
  font-size: 1em;
  margin-top: 20px;
}


/* ////////////////
   SCROLL TOP
   //////////////*/

/* Estilos para el botón de scroll */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #1a76d1;
  color: white;
  font-size: 24px;
  padding: 10px 15px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: none; /* Oculto por defecto */
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.scroll-to-top:hover {
  background-color: #155a9d;
}


/* //////////////////////
   SUSCRIPCIÓN
   ///////////////////*/
.mensaje{
  text-align: center;
}
.mensaje p{
  color: #fff;
  line-height: 1.5em;
}
.mensaje h2{
  display: block;
  margin: auto;
  padding: 20px;
  text-align: center;
  font-size: 1.2em;
}

#optin-Fo5RkRgW{
  margin: auto;
  width: 50%;
}

div.p-body, .p-optin#optin-form-Fo5RkRgW{
  display: inline-block;
  margin: auto;
  width: 100%;
}

.p-optin#optin-form-Fo5RkRgW div.p-body p:not(.p-error-message):not(.p-title), .p-optin#optin-form-Fo5RkRgW div.p-body .p-success, .p-optin#optin-form-Fo5RkRgW div.p-body label, .p-perfit-ad a{
  margin: auto;
  width: 100%;
  font-size: 1em;
  margin-top: 20px;
}

#optin-sOJFqtD1{
  margin: auto;
  width: 50%;
}

div.p-body, .p-optin#optin-form-sOJFqtD1{
  display: inline-block;
  margin: auto;
  width: 100%;
}

.p-optin#optin-form-sOJFqtD1 div.p-body p:not(.p-error-message):not(.p-title), .p-optin#optin-form-sOJFqtD1 div.p-body .p-success, .p-optin#optin-form-sOJFqtD1 div.p-body label, .p-perfit-ad a{
  margin: auto;
  width: 100%;
  font-size: 1em;
  margin-top: 20px;
}
