/* Reset básico */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font: 400 1rem/1.5625rem sans-serif;
    font-family: -apple-system, BlinkMacSystemFont, segoe ui, Roboto, Oxygen, Ubuntu, Cantarell, open sans, helvetica neue, sans-serif;
    color: #8da0bc;
    background-color: #1a1f1a;
    word-wrap: break-word;
}

/* Layout principal */
#aa-wp {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#aa-wp > .bd {
    flex: 1 0 auto;
}

.cont {
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
    max-width: 1140px;
}

/* Tipografía */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    margin: 0 0 1.25rem;
    color: #fff;
}

h1 {
    font-size: calc(1.25vw + 1.25vh + 1.8rem);
    line-height: 1.3;
}

h2 {
    font-size: 2.05rem;
    line-height: 3.5rem;
}

h3 {
    font-size: 1.4rem;
    line-height: 1.7rem;
}

p {
    margin: 0 0 1.25rem;
}

/* Enlaces */
a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    color: #329D26;
}

img {
    vertical-align: middle;
    max-width: 100%;
}

/* Utilidades */
.hidden {
    display: none !important;
}

.dfx {
    display: flex;
}

.alg-cr {
    align-items: center;
}

.jst-sb {
    justify-content: space-between;
}

.fg1 {
    flex-grow: 1;
}

.dfxc {
    display: flex;
}

.tac {
    text-align: center;
}

/* Header */
.Header {
    position: relative;
    top: 0;
    z-index: 11;
    margin-bottom: 2.5rem;
}

.Header .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin-bottom: 0;
    margin-right: 1.5rem;
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
}

/* Menú hamburguesa */
.MenuBtn {
    width: 3rem;
    min-width: 3rem;
    height: 3rem;
    cursor: pointer;
    background-color: #329D26;
    padding: .75rem .85rem 0;
    border-radius: 3rem;
    z-index: 10;
}

.MenuBtn > i {
    background-color: #fff;
    width: 100%;
    height: 3px;
    margin: 4px 0;
    display: block;
    border-radius: 5px;
    cursor: pointer;
}

.MenuBtnClose {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: none;
    background-color: rgba(0, 0, 0, .75);
}

#aa-wp.on {
    overflow: hidden;
}

#aa-wp.on .Header {
    position: fixed;
    width: 100%;
}

#aa-wp.on .MenuBtnClose {
    display: block;
}

#aa-wp.on .MenuBtn > i:first-child {
    transform: translateY(200%) rotate(45deg);
}

#aa-wp.on .MenuBtn > i:nth-child(2) {
    opacity: 0;
}

#aa-wp.on .MenuBtn > i:nth-child(3) {
    transform: translateY(-200%) rotate(135deg);
    position: relative;
    bottom: 2px;
}

/* Navegación */
nav ul {
    margin: 0;
    padding: 0;
}

nav li {
    list-style-type: none;
}

.menu-item > a {
    display: inline-block;
    padding: .5rem 0;
}

.menu-item-has-children > a:after {
    content: url('data:image/svg+xml;charset=UTF-8, <svg fill="blue" width="10" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z"/></svg>');
    font-size: .75rem;
    margin-left: .45rem;
    color: #329D26;
    padding-top: 5px;
}

.sub-menu {
    display: none;
}

/* Responsive Menu - Mobile */
.Header .Rght {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 320px;
    transform: translatex(-100%);
    background-color: #1A1F1A;
    z-index: 2;
    padding: 7rem 1.5rem 1.5rem;
    overflow-y: auto;
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
}

.Header:before {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 320px;
    transform: translatex(-100%);
    background-color: #1A1F1A;
    z-index: 3;
    content: "";
    padding: 0;
    height: 7rem;
}

#aa-wp.on .Header .Rght,
#aa-wp.on .Header:before {
    transform: translatex(0);
    opacity: 1;
}

.Header .cont {
    max-width: none !important;
}

.Header .Menu {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

.Header .Menu > ul > li {
    padding: .5rem 1.5rem;
    border-bottom: 1px solid rgba(79, 89, 127, .3);
}

.Header .Menu > ul > li:last-child {
    border-bottom: 0;
}

.Header .Menu .sub-menu {
    padding-bottom: .5rem;
    font-size: .875rem;
    display: none;
}

.Header .Menu .sub-menu a {
    opacity: .9;
    transition: all .3s ease;
    color: #e5dfdf;
}

.Header .Menu .sub-menu a:hover {
    opacity: 1;
    color: #329D26;
}

.sub-menu {
    display: none;
    padding-left: 1rem;
}

.sub-menu > li {
    float: left;
    width: 50%;
}

.sub-menu:after {
    clear: both;
    content: "";
    overflow: hidden;
    display: block;
}

/* Búsqueda */
.Search {
    position: relative;
    margin-bottom: 1rem;
}

.Search .Form-Icon {
    position: relative;
    padding: 0;
    display: block;
}

.Header .Search .Form-Icon input {
    width: 100%;
}

/* Contenido principal */
.Homealt2_cnt__2Bd2o {
    padding-top: 60px;
}

.Homealt2_figure__GfrVw {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    margin-left: 0;
    margin-right: 0;
}

.Homealt2_figure__GfrVw img {
    width: 280px;
    height: auto;
}

/* Botones */
.Homealt2_abn__HV9EQ {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.Homealt2_abn__HV9EQ a {
    color: #fff;
    background-color: #329D26;
    display: inline-block;
    padding: 18px 36px;
    font-size: 19px;
    margin-top: 30px;
    border-radius: 50px;
    transition: all .2s ease;
    font-weight: 700;
}

.Homealt2_abn__HV9EQ a:hover {
    background-color: #2a8520;
}

/* Sección de texto */
.Homealt2_hmt__jSPmK {
    margin-top: 50px;
    background: hsla(0, 0%, 100%, .1);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid hsla(0, 0%, 100%, .2);
    color: #b3d1ff;
    width: 618px;
    max-width: 100%;
    padding: 26px 30px;
    margin-left: auto;
    margin-right: auto;
}

.Homealt2_hmt__jSPmK h1 {
    line-height: 1.5;
    margin: 0;
    color: #fff;
    font-size: 2rem;
}

.Homealt2_hmt__jSPmK h2,
.Homealt2_hmt__jSPmK h3,
.Homealt2_hmt__jSPmK h4 {
    line-height: 1.5;
    margin: 0 0 1rem;
    color: #fff;
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Section */
.Homealt2_mtfaq__A6ps5 {
    margin-top: 30px;
}

.w-med {
    width: 900px;
    margin: 0 auto;
    max-width: 100%;
}

.Faq_title__BQJPd {
    font-size: 36px;
    text-align: center;
    width: 100%;
}

.Faq_container__cI0GJ {
    margin-top: 30px;
}

.Faq_box__yeGTB {
    margin-bottom: 10px;
}

.Faq_question__LpKbN {
    background: #4f597f80;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-weight: 400;
    margin-bottom: 1px;
    padding: .8em 2.2em .8em 1.2em;
    position: relative;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
    color: #e5dfdf;
}

.Faq_question__LpKbN img {
    filter: brightness(0) invert(1);
    width: 16px !important;
    height: 16px !important;
}

.Faq_answer__JeyK6 {
    background: #20253a;
    font-weight: 400;
    margin-bottom: 1px;
    padding: 1em 2.2em 1em 1.2em;
    position: relative;
    width: 100%;
    font-size: 15px;
    color: #e5dfdf;
}

/* Footer */
.ft {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(20, 26, 50, 0) 0, rgba(20, 26, 50, .01) 1%, #141a32);
}

.ft .logo-ft {
    margin-bottom: 1rem;
    display: block;
}

.ft .dfxb {
    display: block;
}

.ft nav {
    display: block;
    width: 100%;
}

.mnft,
.smft {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style-type: none;
}

.mnft li,
.smft li {
    padding: .5rem;
    list-style-type: none;
}

.mnft a,
.smft a {
    display: block;
}

.smft a {
    color: #4f6b95;
    font-size: 1.875rem;
    min-width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
}

.smft a:hover {
    color: #fff;
}

.copy {
    color: #4f6b95;
    font-size: .75rem;
    margin-top: 1rem;
}

/* Footer Responsive */
@media (min-width: 768px) {
    .ft .dfxb {
        display: flex;
        align-items: center;
    }
    
    .ft nav {
        display: flex;
        justify-content: space-between;
        flex-grow: 1;
        align-items: center;
    }
    
    .ft .logo-ft {
        margin-right: 1.5rem;
        margin-bottom: 0;
    }
    
    .mnft > li {
        margin-right: 1rem;
    }
    
    .mnft > li:last-child {
        margin-right: 0;
    }
    
    .copy {
        padding-top: 1.5rem;
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    .dfxc {
        display: flex;
    }
    
    .Header .Rght {
        position: static;
        transform: none;
        width: auto;
        padding: 0;
        overflow: visible;
        box-shadow: none;
        flex-grow: 1;
        display: flex;
        align-items: center;
    }
    
    .Header:before {
        display: none;
    }
    
    .MenuBtn {
        display: none;
    }
    
    .Header .Menu {
        order: 2;
        margin-left: 0;
        margin-right: 0;
    }
    
    .Header .Search {
        order: 3;
        margin-bottom: 0;
    }
    
    .Menu > ul {
        display: flex;
    }
    
    .Header .Menu > ul > li {
        margin-right: 1.5rem;
        padding: 0;
        border-bottom: 0;
        float: left;
    }
    
    .Header .Menu > ul > li:last-child {
        margin-right: 0;
    }
    
    .menu-item-has-children {
        position: relative;
    }
    
    .menu-item-has-children:hover > .sub-menu {
        display: block;
    }
    
    .sub-menu {
        position: absolute;
        left: -1rem;
        top: 100%;
        background-color: #4f597f80;
        border: 1px solid rgba(79, 89, 127, .5);
        border-radius: 8px;
        width: 180px;
        padding: .5rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
        display: none;
        padding-left: .5rem;
    }
    
    .sub-menu:before {
        content: "";
        position: absolute;
        left: 1rem;
        top: -5px;
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 5px solid #4f597f80;
    }
    
    .sub-menu > li {
        float: none;
        width: 100%;
    }
    
    .sub-menu:after {
        display: none;
    }
    
    .sub-menu a {
        display: block;
        padding: .5rem 1rem;
        border-radius: 5px;
        font-size: .875rem;
        transition: all .3s ease;
        color: #e5dfdf;
    }
    
    .sub-menu a:hover {
        background-color: #1A1F1A;
        color: #329D26;
    }
    
    .Header .Menu .sub-menu {
        font-size: .875rem;
    }
}

@media (min-width: 1200px) {
    .logo {
        margin-right: 3rem;
    }
    
    .Menu > ul > li {
        margin-right: 2.5rem;
    }
}