@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;600;700;800&display=swap");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --azul1: #1994d6;
    --azul2: #00c4ff;
    --gris1: #e0effa;
    --gris2: #eff8ff;
    --azulfuerte: #162c4d;
}
.azul1 {
    color: var(--azul1);
}
.negritas {
    font-weight: 700;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #333;
}
.ancho {
    max-width: 1200px;
    margin: auto;
    /* border: 1px red solid; */
}
.subir {
    font-size: 35px;
    color: var(--azulfuerte);
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
    position: fixed;
    z-index: 1000;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
}
.contenedor_redes {
    background-color: var(--azulfuerte);
    color: white;
    padding: 5px 10px;
}
.alineacion {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.alineacion a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    display: inline-block;
    transition: all 0.3s linear;
}
.alineacion a:hover {
    color: var(--azul2);
}
.redes_sociales {
    width: 200px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.margen {
    padding: 10px;
}
.margen_derecha {
    margin-right: 10px;
}
.margen_izquierda {
    margin-left: 10px;
}
.contenedor_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.contenedor_header figure {
    max-width: 180px;
}
.contenedor_header figure img {
    width: 100%;
    display: block;
}
nav {
    flex-grow: 1;
    font-size: 16px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
.linkmenu {
    text-decoration: none;
    padding: 10px 10px 5px 10px;
    color: var(--azulfuerte);
    display: inline-block;
    border-bottom: 5px solid white;
}
.linkmenu:hover {
    border-bottom: 5px solid var(--azul1);
}
.btn_azul {
    border-radius: 60px;
    padding: 10px 30px 10px 30px;
    text-decoration: none;
    background-color: var(--azul1);
    color: white;
    font-size: 14px;
    transition: all 0.3s linear;
}
.btn_azul:hover {
    background-color: var(--azulfuerte);
}
.btn_menu {
    display: none !important;
    background-color: var(--azulfuerte);
    color: white;
    padding: 10px;
    border-radius: 7px;
}
/* slide */
.contenedor_slide {
    margin: auto;
    position: relative;
}
.rslides {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}
.rslides li {
    backface-visibility: hidden;
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    top: 0;
    height: 100vh;
}
.rslides li:first-child {
    position: relative;
    display: block;
    float: left;
}
.rslides img {
    display: block;
    height: auto;
    float: left;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    border: 0;
}
.contenedor_slide {
    position: relative;
}
.filtro {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 100%;
    z-index: 500;
    color: white;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: flex-start;
}
.filtro figure {
    max-width: 400px;
}
.filtro figure img {
    width: 100%;
}
.titulo_slide {
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
}
.subtitulo_slide {
    max-width: 600px;
    font-size: 40px;
    line-height: 45px;
}
.btn_slide {
    background-color: var(--azul1);
    color: white;
    text-decoration: none;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 40px;
    margin-top: 15px;
    transition: all 0.3s linear;
}
.btn_slide:hover {
    background-color: var(--azulfuerte);
}
.btn_slide2 {
    background-color: var(--azulfuerte);
    color: white;
    text-decoration: none;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 40px;
    margin-top: 15px;
    transition: all 0.3s linear;
}
.btn_slide2:hover {
    background-color: var(--azul1);
}
.iconovideo {
    vertical-align: middle;
}
.btn_video {
    color: white;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    padding: 10px 30px;
    border-radius: 40px;
    margin-top: 15px;
    transition: all 0.3s linear;
}
.btn_video:hover {
    transform: scale(1.1);
}
/* modal */
.btn_modal {
    cursor: pointer;
}
.mascara {
    display: none;
    position: fixed;
    z-index: 10000;
    padding: 100px 10px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    transition: all 0.5s;
    background-color: rgba(0, 0, 0, 0.8);
}
.mascara2 {
    display: none;
    position: fixed;
    z-index: 2000;
    padding: 100px 10px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    transition: all 0.5s;
    background-color: rgba(0, 0, 0, 0.8);
}
.contenidomodal {
    background-color: #fefefe;
    margin: auto;
    padding: 10px;
    border: 1px solid #888;
    max-width: 900px;
}
.contenidomodal2 {
    background-color: #fefefe;
    margin: auto;
    padding: 15px;
    border: 1px solid #888;
    max-width: 900px;
}
.estructuramodal {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.estructuramodal2 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.cerrarmodal {
    cursor: pointer;
    color: red;
    font-size: 26px;
    transition: all 0.5s;
}
.cerrarmodal2 {
    cursor: pointer;
    color: red;
    font-size: 26px;
    transition: all 0.5s;
}
.cerrarmodal:hover {
    color: #000000;
}
.cerrarmodal2:hover {
    color: #000000;
}
#video {
    margin-top: 10px;
    width: 100%;
}
#contenedoryoutube {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%; /*nos da la proporcion de 16X9*/
    position: relative;
}
#contenedoryoutube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.contenedor_apoe {
    background-image: url(../imagenes/fondo_azul_logo.svg);
    background-size: cover;
    background-position: center center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.contenedor_apoe_grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.contenedor_apoe figure {
    width: 50%;
}
.contenedor_apoe figure img {
    width: 100%;
    display: block;
}
.contenedor_info_apoe {
    width: 50%;
}
.contenedor_titulo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.subtitulo {
    font-size: 35px;
    line-height: 40px;
    font-weight: normal;
}
.contenedor_vinetas {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}
.contenedor_diabetestipo3 {
    background-image: url(../imagenes/foondo_hexagonos.svg);
    background-size: cover;
    background-position: center center;
}
.fondo_hexagonos {
    background-image: url(../imagenes/foondo_hexagonos.svg);
    background-size: cover;
    background-position: center center;
}
.blanco {
    color: white;
}
.centrar {
    text-align: left;
    margin: auto;
}
.centrar2 {
    text-align: center;
    margin: auto;
}
.contenedor_diabetestipo3_grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.contenedor_diabetestipo3 figure {
    width: 50%;
}
.contenedor_diabetestipo3 figure img {
    width: 100%;
    display: block;
}
.contenedor_info_apoe2 {
    width: 50%;
}
.contenedor_apoe2 {
    background-image: url(../imagenes/fondo_gen_azul.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.contenedor_apoe2_grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.contenedor_apoe2 figure {
    width: 50%;
}
.contenedor_apoe2 figure img {
    width: 100%;
    display: block;
}
.contenedor_pasos {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.contenedor_pasos figure {
    position: relative;
}
.contenedor_pasos figcaption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.contenedor_pasos h3 {
    color: white;
    text-align: center;
}
.fondo_azul2 {
    background-image: url(../imagenes/fondo_azul_logo.svg);
    background-size: cover;
    background-position: center center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.fondo_footer {
    background-image: url(../imagenes/fondo_footer.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.contenedor_info_footer {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 30px;
}
.cont_footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.contenedor_info_footer a {
    color: white;
    text-decoration: none;
}
.copy {
    background-color: var(--azul1);
    color: white;
    font-size: 14px;
    text-align: center;
    padding: 5px;
}
.contenedor_suscripcion {
    position: relative;
}
.contenedor_formulario_suscripcion {
    background-color: var(--azulfuerte);
    padding: 30px;
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: white;
    position: relative;
    gap: 20px;
}
.contenedor_suscripcion {
    position: relative;
    top: 20px;
}
.cont_formulario_boletin {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.cont_formulario_boletin input {
    padding: 15px;
    border-radius: 40px;
    min-width: 290px;
    border: 0;
}
.cont_formulario_boletin button {
    padding: 10px 25px;
    background-color: var(--azul1);
    color: white;
    border: 0;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
}
.elementosformulario {
    padding: 10px;
    width: 100%;
    border: 1px #ccc solid;
    border-radius: 5px;
    line-height: 20px;
    margin-bottom: 15px;
}
.btn_registrame {
    padding: 10px 30px;
    font-size: 16px;
    background-color: var(--azul1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    border: 0;
    width: 90%;
    transition: all 0.5s;
}
.btn_registrame:hover {
    background-color: var(--azulfuerte);
}
