/* Importación de fuentes */
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap');

/* Estilos generales */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f7f9;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Encabezado */
header {
    background-color: white;
    color: white;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    padding: 120px 0px 0px 0px;
    display: flex;
}

.header_top {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.loader_bg {
    position: fixed;
    z-index: 9999999;
    background: #fff;
    width: 100%;
    height: 100%;
}

.loader {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader img {
    width: 280px;
}

/* Contenedor principal */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: justify;
}

/* Estilos para los títulos */
h1 {
    color: #101d86;
    font-weight: 600;
    text-align: center;
    padding-top: 20px;
}

h2 {
    color: #101d86;
    font-weight: 600;
    padding-left: 30px;
}


h2 {
    font-size: 20px;
    padding-bottom: 5px;
    margin-top: 20px;
}

/* Párrafos y listas */
p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
    text-align: justify; 
    padding: 30px;
}

ul {
    padding-left: 20px;
}

ul li {
    list-style: none;
    position: relative;
    padding-left: 50px;
    text-align: justify; 
}

ul li::before {
    content: "✔";
    position: absolute;
    padding-left: 30px;
    left: 0;
    color: #424a8a;
    font-weight: bold;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #101d86;
    color: white;
    margin-top: 40px;
}

footer a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: #fff;
}

/* Botón de regreso */
.back-button {
    display: block;
    width: 200px;
    margin: 20px auto;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #101d86;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
    text-decoration: none;
}

.back-button:hover {
    background-color: #202121;
}

 /* Contenedor del switch de idioma */
 .language-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px auto;
}

/* Etiquetas de idioma */
.language-labels {
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s;
    color: #726262;
}

.language-labels span {
    cursor: pointer;
    transition: color 0.3s;
}

/* Color azul para el idioma activo */
.language-labels.active {
    color: #101d86;
}

/* Switch principal */
.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
    background: #ddd;
    border-radius: 13px;
    cursor: pointer;
    transition: background 0.3s;
}

/* Círculo deslizante */
.toggle-switch:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Activar switch (inglés seleccionado) */
.toggle-switch.active {
    background: #101d86;
}

.toggle-switch.active:before {
    left: 27px;
}

.logo {
    padding-top: 0px;
    max-width: 200px;
    height: auto;
}

img {     
    max-width: 100%;
    height: auto;
}

.sidepanel {
    width: 0;
    position: fixed;
    z-index: 9999;
    height: 100%;
    justify-content: space-between;
    top: 0;
    right: 0;
    background-color: #070101;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidepanel a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    display: block;
    transition: 0.3s;
}

.sidepanel a:hover {
    color: #101d86;
}

.sidepanel .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
}

.sidepanel .privacy-link {
    margin-top: 340px;
    display: block;
    color: #fff;
}

.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: transparent;
    padding: 15px;
    border: none;
    margin-left: 16px;
}

.right_bottun {
    float: right;
    display: flex;
    flex-wrap: wrap;
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.whatsapp-icon:hover {
    background-color: #1ebe57;
}