/* Variables */
:root {
    --azul100: #001849;
    --azul80: #1C4FDE;
    --azul60: #3F71FC;
    --azul40: #8AA9FF;
    --azul35: #A0C0FF;
    --azul30: #C7D6FF;
    --azul20: #EAF0FF;
    --azul10: #E4EDFF;
    --turquesa100: #08C6E7;
    --turquesa50: #CEF5FF;
    --black100: #000000;
    --gris300: #C0C7DA;
    --gris200: #EAEDF5;
    --gris100: #E1E9F3;
    --gris50: #F6F8FD;
    --gris40: #C6CDD9;
    --gris30: #C6CDD9;
    --gris20: #E9EEF5;
    --gris10: #EEF3F9;
    --gris5: #D8D8D8;
    --white100: #FFFFFF;
    --verde100: #57AE00;
    --verde50: #DAF6AD;
    --rojo100: #E1091B;
    --rojo50: #FFC1C1;
    --colorPrimario: #3F71FC;
    --colorSecundario: #E1E9F3;
    --backgroundPrimario: #3F71FC;
    --colorTitle: #001849;
    --colorVariant: #3F71FC;
}

/* Global Styles */
* {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--colorTitle);
}

@media screen and (max-width: 768px) {
    * {
        font-size: 14px;
    }
}

/* Buttons */
.btnMonerePrimary {
    background-color: var(--azul60);
    color: #fff;
    border-radius: 8px;
    padding: 16px 16px 14px;
    line-height: 1;
    border: 1px solid var(--azul60);
    text-align: center;
    align-items: center;
}

.btnMonerePrimary:hover {
    background-color: var(--azul80);
    color: #fff;
    border: 1px solid var(--azul80);
}

.btnMonereSecondary {
    background-color: #fff;
    color: #7297FF;
    border-radius: 8px;
    padding: 16px 16px 14px;
    line-height: 1;
    border: 1px solid #7297FF;
    text-align: center;
    align-items: center;
    cursor: not-allowed;
}

.btnMonereSecondary:hover {
    color: var(--azul60);
    border: 1px solid var(--azul60);
}

.btnMonereAction {
    background-color: var(--azul100);
    color: #fff;
    border-radius: 8px;
    padding: 16px 16px 14px;
    line-height: 1;
    border: 1px solid var(--azul100);
    text-align: center;
    align-items: center;
}

.btnMonereAction:hover {
    background-color: var(--azul80);
    color: #fff;
    border: 1px solid var(--azul80);
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    background-color: #fff;
    z-index: 100;
}

.header_container {
    width: 100%;
    min-height: 80px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0px;
}

.header_logo {
    width: 140px;
    height: 100%;
}

.header_logo img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.header_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

@media screen and (max-width: 768px) {
    .header_menu {
        display: none;
    }
}

.header_menu_nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header_menu_nav_item {
    font-size: 1.2rem;
    font-weight: 500;
    color: #001849;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.header_menu_nav_item:hover,
.header_menu_nav_item.active {
    font-weight: 700;
}

.header_menu_buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header_menu_buttons .btn {
    width: 150px;
}

.header_button {
    display: none;
}

@media screen and (max-width: 768px) {
    .header_button {
        display: block;
        position: relative;
    }
}

.buttonMenu {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 9px 18px 0px rgba(0, 17, 51, 0.20);
}

.buttonMenu svg {
    font-size: 24px;
    color: var(--azul100);
    transition: all 0.3s ease;
}

.buttonMenu svg:hover {
    color: var(--azul80);
    transform: scale(0.9);
}

.menu {
    display: none;
    position: absolute;
    bottom: -280px;
    right: 0px;
    width: 200px;
    height: 260px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 2px 10px 0px rgba(0, 24, 73, 0.20);
    transition: all 0.3s ease;
}

.menu.active {
    display: block;
    animation: scale-up-vertical-top 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.menu .item {
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    min-height: 46px;
    padding: 8px 19px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: var(--colorTitle);
}

.menu .item:hover {
    background-color: var(--azul20);
}

.menu_buttons {
    padding: 8px;
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}

@keyframes scale-up-vertical-top {
    0% {
        opacity: 0;
        transform: scaleY(0.4);
        transform-origin: center top;
    }
    100% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: center top;
    }
}

/* Principal Section */
.principal {
    padding: 120px 0 3rem 0;
    width: 100%;
}

.principal_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--colorTitle);
}

.principal_title span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--turquesa100);
}

.principal_subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--colorTitle);
}

.principal_img {
    width: 100%;
    height: 100%;
    margin-top: 20px;
}

/* Secundario Section */
.secundario {
    padding: 5rem 0;
}

.secundario_title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--colorTitle);
    margin-bottom: 1.5rem;
}

.secundario_text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--colorTitle);
}

.secundario_text strong {
    font-weight: 700;
}

.secundario_img {
    max-width: 260px;
    width: 100%;
    height: 100%;
    margin-top: 20px;
}

/* Servicios Section */
.servicios {
    padding: 4rem 0;
    background-color: #EFF4FF;
}

.servicios_title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--colorTitle);
    margin-bottom: 2rem;
}

.servicios_subtitle {
    margin: 0 auto;
    max-width: 750px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--colorTitle);
}

.servicios_container_cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 4rem 0;
    gap: 1.5rem;
}

.cardCustom {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 360px;
    min-height: 460px;
    border: 1px solid #fff;
    box-shadow: 0px 6px 20px 0px rgba(0, 17, 51, 0.08);
}

.cardCustom_text {
    flex: 1;
    text-align: start;
    font-size: 14px;
    font-weight: 400;
    color: var(--colorTitle);
    margin-bottom: 0;
}

.cardCustom_title {
    display: flex;
    justify-content: start;
    align-items: center;
}

.cardCustom_title h4 {
    font-size: 19px;
    font-weight: 500;
}

.cardCustom_title img {
    width: 103px;
    height: 103px;
}

.cardCustom.active {
    position: relative;
    border: 1px solid var(--azul100);
}

.cardCustom.active .banner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 270px;
    height: 25px;
    border-radius: 0px 0px 16px 16px;
    background-color: var(--azul100);
    color: #fff;
    text-align: center;
}

/* Asesoría Section */
.asesoria {
    padding: 6rem 0;
}

.asesoria_title {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .asesoria_title {
        flex-direction: column;
        margin-bottom: 2rem;
    }
}

.asesoria_title h3 {
    max-width: 600px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--colorTitle);
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .asesoria_title h3 {
        font-size: 1.5rem;
    }
}

.asesoria_text {
    max-width: 450px;
    margin: 0 auto;
    font-size: 1rem;
    font-weight: 300;
    color: var(--colorTitle);
}

.asesoria_text strong {
    font-weight: 700;
}

.asesoria_img {
    width: 100%;
}

/* Team Section */
.team {
    padding: 6rem 0;
    background-color: #F6F8FD;
}

.team_title {
    margin: 0 auto;
    max-width: 700px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--colorTitle);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.team_subtitle {
    margin: 0 auto;
    max-width: 750px;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--colorTitle);
    margin-bottom: 3rem;
}

.team_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.team_container_card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 6px 20px 0px rgba(0, 17, 51, 0.08);
}

.team_container_card img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/4.3;
    margin-bottom: 1rem;
}

.team_container_card-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--colorTitle);
    margin-bottom: 1rem;
}

.team_container_card-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #3F71FC;
    margin-bottom: 1rem;
}

.team_container_card-text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--colorTitle);
    margin-bottom: 0;
    flex: 1;
}

.team_container_card-social {
    text-align: end;
}

/* Prices Section */
.prices {
    padding: 6rem 0;
}

.prices_title {
    margin: 0 auto;
    max-width: 700px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--colorTitle);
    margin-bottom: 4rem;
    line-height: 1.4;
}

.prices_subtitle {
    margin: 0 auto;
    max-width: 750px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--colorTitle);
    margin-bottom: 2rem;
}

.prices_subtitle strong {
    font-size: 1.25rem;
    font-weight: 500;
}

.prices_extra {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    color: #A0C0FF;
    margin-bottom: 2rem;
}

.prices_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.prices_container_card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 450px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.10);
}

.prices_container_card .top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    width: 100%;
    height: 252px;
    background-color: var(--azul100);
    border-radius: 16px 16px 0 0;
}

.prices_container_card .top_title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--azul80);
    margin-bottom: 1rem;
}

.prices_container_card .top_value {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--azul80);
    padding: 0.5rem;
}

.prices_container_card .p1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prices_container_card .p1 .text {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}

.prices_container_card .p1 .price {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
}

.prices_container_card .p2 {
    font-size: 1rem;
    font-weight: 300;
    color: #A0C0FF;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--azul80);
}

.prices_container_card .p3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prices_container_card .p3 .text {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}

.prices_container_card .p3 .price {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
    text-decoration: line-through;
}

.prices_container_card .content {
    flex: 1;
    padding: 2rem;
}

.prices_container_card .content_item {
    display: flex;
    justify-content: start;
    align-items: flex-start;
}

.prices_container_card .content_item p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--colorTitle);
    margin-bottom: 4px;
}

.prices_container_card .buttons {
    padding: 0 2rem 2rem 2rem;
    text-align: center;
    width: 100%;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--azul100);
}

.contact_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact_container_text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    max-width: 700px;
    margin-bottom: 0;
}

/* Corfo Section */
.corfo {
    padding: 5rem 0;
    background-color: #F3F6FB;
}

.corfo_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.corfo_container_text {
    max-width: 380px;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 0;
}

/* Footer */
.footer {
    padding: 5rem 0;
    background-color: #fff;
}

.footer_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer_container .extra {
    max-width: 500px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footerMneu {
    width: 300px;
    text-align: left;
}

.footerMneu_title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--colorTitle);
    margin-bottom: 8px;
}

.footerMneu_nav {
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    color: var(--colorTitle);
    margin-bottom: 1px;
}

.footer .buttons {
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.footer .buttons .btn {
    width: 150px;
}


