body{
    height: 100vh;
    display: flex;
    flex-direction: column;
}
/* seccion 1 */
.section-top{
    width: 100vw;
    padding: 32px 12px 12px 12px;
}
.section-top span.logo{
    margin-bottom: 12px;
    border-radius: 50px;
    background: #002E66;
    display: flex;
    padding: 8px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: #FFF;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.section-top h1{
    color: #203B78;
    font-family: "DM Serif Display";
    font-size: clamp(32px, 40px, 56px);
    line-height: 110%;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 16px;
}
.section-top p,
.content * {
    color: #002E66;
    font-family: "Lato", Arial, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}

.section-top select.lang-switch {
    display: block;
    margin-left: auto;
    padding: 10px 16px;
    font-size: 14px;
    font-family: 'Lato', Arial, sans-serif;
    color: #002E66;
    background-color: #fff;
    border: 1px solid #002E66;
    border-radius: 8px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23002E66' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    transition: all 0.3s ease;
}

.section-top select.lang-switch:hover {
    background-color: #f5f5f5;
    border-color: #203B78;
}

.section-top select.lang-switch:focus {
    outline: none;
    border-color: #203B78;
    box-shadow: 0 0 0 3px rgba(32, 59, 120, 0.15);
}

.section-botom{
    width: 100vw;
    padding: 12px 12px 32px 12px;
    flex: 1 0 0;

    display: flex;
}

.section-botom .card-section{
    display: flex;
    padding: 32px 20% 32px 32px;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    flex: 1 0 0;
    border-radius: 20px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.section-botom .card-section span,
.section-botom .card-section h2,
.section-botom .card-section p,
.section-botom .card-section img{
    pointer-events:none;

}
.section-botom .card-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.70);
    border-radius: 20px;
    z-index: 0;
    transition: all .4s ease-in-out;
}
.section-botom .card-section:hover::before{
    background: rgba(0, 0, 0, 0.80);
}
.section-botom .card-section img{
    height: 42px;
    width: fit-content;
    margin-top: 22px;
    margin-bottom: 8px;
}
.section-botom .card-section{
    font-size: 0;
    background-color: transparent;
    color: transparent;
}

.section-botom .card-section.liasa-card{
    background-image: url(../img/caixavi.jpg);
}
.section-botom .card-section.cinpasa-card{
    background-image: url(../img/FOTO_CINPASA_CORTINAS.png);
    align-items: flex-end;
    padding: 32px 32px 32px 20% ;
}
.section-botom .card-section.cinpasa-card{
    text-align: right;
}
.section-botom .card-section h2,
.section-botom .card-section img,
.section-botom .card-section p,
.section-botom .card-section span{
    position: relative;
    z-index: 1;
}
.section-botom .card-section h2{
    color: #FFF;
font-family: "DM Serif Display";
font-size: 40px;
font-style: normal;
font-weight: 400;
}
.section-botom .card-section p{
  color: #FFF;
    font-family: "  Lato", Arial, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 32px;
}
.section-botom .card-section span{
    margin: auto 0 0 0;
    color: #FFF;
    font-family: "Lato", Arial, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    width: fit-content;
    display: flex;
    padding: 16px 32px;
    align-items: center;
    gap: 16px;
    background: #002E66;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    text-decoration: none;
    transition: .4s ease-in-out;
    cursor: pointer;
}
.section-botom .card-section span:hover{
    background: #001845;
}
.section-botom .card-section span svg {
    transition: .4s ease-in-out;
    opacity: .6;
}
.section-botom .card-section span:hover svg{
    opacity: 1;
}



/*  footer  */
footer{
    width: 100vw;
    background-color: black;
    padding: 16px 0;
}
footer p, 
footer p a,
footer p .open_preferences_center_selector{
    color: #FFF;
    text-align: center;
    font-family: Arial, 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
}

footer p a,
footer p .open_preferences_center_selector{
    color: #FFF;
    font-family: Arial, 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

footer p .open_preferences_center_selector {
    cursor: pointer;
}

/* Responsive: en móvil (< lg) alinear cinpasa-card a la izquierda */
@media (max-width: 991px) {
    .section-botom{
        padding: 12px;
    }
    .section-botom .card-section.cinpasa-card {
        align-items: flex-start;
        text-align: left;
        padding: 48px 25% 48px 48px;
    }
    .section-botom .card-section.cinpasa-card a {
        margin-left: 0;
        margin-right: auto;
    }

    .section-botom .col-lg-6 {
        margin-bottom: 20px;
    }
    .section-botom .col-lg-6:last-of-type {
        margin-bottom: 0px;
    }
    .section-top p{
        margin: 0;
    }
    .section-top h1,
    .section-botom .card-section h2{
        font-size: 32px;
    }

}

@media (max-width: 767px) {
    .section-botom .card-section{
        padding: 24px!important;
    }
}


.content strong {
  font-weight: 600;
}

.content td {
  border: 1px solid #002E66;
  padding: 4px 8px;
}

.content table {
  margin: 16px 0;
}

.cc-nb-buttons-container button,
.cc-cp-foot-save {
    background-color: #002E66 !important;
    color: white !important;
}

.cc-pc-head-close:focus {
    border-color: #002E66 !important;
}

.cc-pc-head-lang-select:focus {
    box-shadow: 0 0 0 2px #002E66 !important;
}