/* _________________________________________________________________________________ RESET */

@import "reset.css";

/* _________________________________________________________________________________ GENERAL */

body {
    background-color: white;
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #4A4A49;
}

a {
    cursor: pointer;
    font-weight: 500;
}

.nowrap {
    white-space: nowrap;
}

/* _________________________________________________________________________________ HEADER */

.header {
    padding: 16px 24px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

/* _________________________________________________________________________________ LOGO */

.logo {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.logo_img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.logo_text {
    font-family: "Roboto Slab", serif;
    font-size: 24px;
    font-weight: 900;
    color: #DC0028;
}

@media (min-width: 500px) {

}

/* _________________________________________________________________________________ MENU */

.menu {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    display: none;
}

.menu li {
    padding: 0 24px;
}

.menu_item {
    padding: 12px 0;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.menu_item.menu_item_selected {
    cursor: auto;
    opacity: .5;
}

.menu_item:hover:not(.menu_item_selected) {
    color: #DC0028;
}

@media (min-width: 789px) {
    .menu {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
    }
}

/* _________________________________________________________________________________ MAIN */

.main {
    padding: 0 24px;
}

/* _________________________________________________________________________________ POSTAL */

#postal {
    text-align: center;
    padding-bottom: 32px;
}

#postal > * {
    max-width: 600px;
    margin: 0 auto;
}

.postal_img {
    width: 100%;
    max-width: 600px;
    padding-bottom: 20px;
}

.postal_title {
    font-family: "Roboto Slab", serif;
    font-size: 28px;
    color: #3c6676;
    padding-bottom: 16px;
}

.postal_text {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 120%;
    padding-bottom: 24px;
}

/* _________________________________________________________________________________ REGALOS */

.col3 {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 8px;
    max-width: 600px;
    padding-bottom: 32px;
}

.col1of3 {
    padding: 8px;
}

.col1of3:hover {
    background-color: #FFEED6;
}

.col1of3:hover .col1of3_img {
    opacity: 100%;
}

.col1of3:hover .col1of3_link {
    background-color: #B7042B;
}

.col1of3_img {
    width: 100%;
    opacity: 90%;
}

.col1of3_title {
    font-family: "Roboto Slab", serif;
    color: #3c6676;
    padding: 12px 0;
}

.col1of3_link {
    display: inline-block;
    padding: 8px 16px;
    color: #FFFFFF;
    background-color: #DC0028;
    border-radius: 4px;
    font-family: "Roboto Slab", serif;
    font-size: 16px;
    font-weight: 700;
}

/* _________________________________________________________________________________ BLOQUE PROMOTION */

.block_text {
    font-family: "Roboto Slab", serif;
    font-size: 28px;
    color: #3c6676;
    font-weight: bolder;
    line-height: 1.2;
    margin: 32px 0 24px;
}

.block_cta {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    margin: 32px 0 100px;
    font-size: 17px;
    line-height: 1.2;
}

.block_ctaImg {
    width: 80px;
    height: 80px;
    margin-right: 24px;
}

.block_ctaText {
    font-weight: bolder;
}

.block_ctaContact {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    margin-top: 32px;
}

.block_ctaContact > a {
    color: #DC0028;
    font-weight: bold;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    gap: 12px;
}

.block_ctaContact > a:hover {
    color: #B7042B;
}

.block_ctaContact img {
    width: 24px;
}

.block_ctaInfo {
    margin-top: 18px;
}

@media (min-width: 789px) {
    .block_ctaContact {
        flex-flow: row nowrap;
        gap: 48px;
        margin-top: 16px;
    }
}

.intro {
    width: 100vw;
    display: flex;
    flex-flow: column-reverse nowrap;
    margin: 0 -24px 24px;
    overflow-y: hidden;
    height: 640px;
}

.intro > * {
    width: 100%;
}

.intro_text {
    font-family: "Roboto Slab", serif;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: flex-start;
}

.intro_tagPromo {
    background-color: #3c6676;
    color: #FFFFFF;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    margin: 24px 0;
    padding: 8px 24px;
    line-height: 1.2;
}

.intro_tagPromo b {
    font-family: "Roboto Slab", serif;
    font-size: 11px;
    font-weight: bolder;
}

.intro_icon {
    width: 140px;
    padding: 0 20px;
}

.intro_title {
    font-size: 52px;
    padding: 0 24px;
    line-height: 1;
    margin-bottom: 24px;
}

.intro_img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media (min-width: 789px) {
    .intro {
        flex-flow: row nowrap;
        height: 400px;
    }

    .intro > * {
        width: 50%;
    }
}

.product2col {
    display: flex;
    flex-flow: column nowrap;
}

@media (min-width: 789px) {
    .product2col {
        flex-flow: row nowrap;
        justify-content: flex-start;
        gap: 24px;
    }

    .product2col > .product {
        width: 50%;
    }
}

.product_title {
    font-size: 15px;
    font-weight: bolder;
    text-transform: uppercase;
    margin: 0;
}

.product_title:before {
    content: "____";
    display: block;
    color: #3c6676;
    font-weight: bolder;
}

.product_price {
    font-size: 12px;
    font-weight: bolder;
    text-transform: uppercase;
    color: #3c6676;
}

.product_text {
    margin: 24px 0 0;
}

.product_link {
    font-size: 14px;
    color: #DC0028;
    margin: 24px 0;
    display: inline-block;
}

.product_link:after {
    content: "";
    font-size: 25px;
    padding-left: 8px;
}

.product_link:hover::after {
    content: "\27F6";
}

.product_link:hover {
    color: #B7042B;
}


.block_salud .intro_text {
    background-color: #FFF6EB;
}

.block_vida .intro_text {
    background-color: #F7FFF0;
}

.block_hogar .intro_text {
    background-color: #F7F8FF;
}

.block_pensiones .intro_text {
    background-color: #FDF2F9;
}

/* _________________________________________________________________________________ BOTÓN */

.btn {
    padding: 12px 32px;
    color: #FFFFFF;
    background-color: #DC0028;
    border-radius: 4px;
    margin-bottom: 16px;
    display: inline-block;
}

.btn:hover {
    background-color: #B7042B;
}

/* _________________________________________________________________________________ PROMOTION */

.promotion {
    padding: 24px 32px;
    background-color: #F2F6FE;
    border-top: 1px solid #f0f0f5;
    border-color:rgba(201,201,207,.35);
}

.promotion_wrapper {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.promotion_img {
    width: 100%;
    max-width: 350px;
}

.promotion_text {
    width: 100%;
    max-width: 350px;
}

.promotion_intro {
    font-family: "Roboto Slab", serif;
    font-size: 14px;
    font-weight: bolder;
    color: #2E4F5C;
    margin: 0 0 10px;
    line-height: 1.2;
}

.promotion_title {
    font-family: "Roboto Slab", serif;
    font-size: 20px;
    font-weight: bolder;
    color: #DC0028;
    margin: 0 0 16px;
    line-height: 1.2;
}

.promotion_text {
    line-height: 1.2;
}

.promotion_info {
    margin: 0 0 16px;
    line-height: 1.2;
}

@media (min-width: 789px) {
    .promotion_wrapper {
        flex-flow: row nowrap;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 24px;
    }

    .promotion_img {
        width: 100%;
        max-width: 33%;
    }
}

/* _________________________________________________________________________________ FOOTER */

footer {
    background-color: #E8E8E8;
    width: 100%;
    border-top: 1px solid #f0f0f5;
    border-color:rgba(201,201,207,.35);
    padding: 22px;
}

footer .menu {
    display: inline-block;
}

footer .menu li {
    padding: 0;
}

footer .menu.menu_footer {
    width: 100%;
}

footer .menu.menu_footer > li:not(:first-child) {
    margin: 16px 0;
}

.menu_footer_title {
    width: 100%;
}

footer .columnWrapper {
    display: flex;
    flex-flow: column nowrap;
    gap: 40px;
}

.column {
    width: 100%;
}

.column_title {
    text-transform: uppercase;
    padding: 8px 0 16px;
    margin: 0 0 4px;
    color: #3c6676;
    font-family: "Roboto Slab", serif;
    font-size: 12px;
    font-weight: bolder;
    border-bottom: 1px solid #f0f0f5;
    border-color:rgba(201,201,207,.35);
}

footer .column .block_ctaContact {
    flex-flow: column nowrap;
    gap: 16px;
    font-size: 14px;
}

footer .column .block_ctaContact a {
    display: flex;
    flex-flow: row nowrap;
    font-weight: bold;
    gap: 12px;
}

footer .column .block_ctaContact a:hover {
    color: #B7042B;
}

footer .column .block_ctaContact img {
    width: 18px;
}

footer .signature {
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid #f0f0f5;
    border-color:rgba(201,201,207,.35);
    width: 100%;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
}

footer .signature  a {
    font-weight: 900;
}

footer .signature  a:hover {
    color: #B7042B;
}

@media (min-width: 789px) {
    footer .columnWrapper {
        flex-flow: row nowrap;
        justify-content: space-between;
        gap: 40px;
    }

    .column {
        width: auto;
        max-width: auto;
        min-width: 250px;
    }
}