@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    
}

.content-footer {
    width: 100%;
    position: relative;
    margin-top: 100px;
    background-color: #0A165E;
}

.content-footer-int {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-flow: row nowrap;
    padding: 0 20px;
    background-color: #0A165E;
    min-height:280px;
}

.maxw {
    max-width: 100%;
    width:100%
}

.footer-left p {
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top:40px;
    font-size: 16px;
}

.footer-left {
    width: 38%;
    padding: 80px 0 0 40px;
   
}

    .footer-left img {
        width: 240px;
        height: auto;
    }

.footer-right {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    width: 60%;
}

.items-col-1, .items-col-2, .items-col-3 {
    padding-left: 30px;
}

.items-col-3 {
    padding-top: 185px;
}

    .items-col-3 a:hover span {
        background-color: #ffffff;
    }

footer .text {
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 26px;
    margin-top: 185px;
}

.items-col-3 span {
    margin: 0 2px;
    font-size: 18px;
    background: #ffffff;
    border-radius: 50px;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 44px;
}

.items-col-3 a {
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
   
}

.items-col-3 a {
    display: inline-block;
    padding: 5px;
    border-radius: 50%;
    color: #0A165E;
    
}



    .items-col-3 a:hover span {
        background-color: #585B6F;
    }



.footer-bottom {
    position: relative;
    padding: 20px 0px;
    border-top: 1px solid rgba(0,0,0,0.10);
    background: #0A165E;
    max-width: 1440px;
    margin: 0 auto;
}

.auto-container {
    position: static;
    max-width: 1300px;
    padding: 0px 15px;
    margin: 0 auto;
    border-top: 1px solid #ffffff;
    padding-top: 20px;

}

.footer-bottom .copyright {
    position: relative;
    font-size: 11px;
    color: #ffffff;
    text-align: center;
    font-size:16px;
}

.copyright a {
    color: #ffffff;
}

@keyframes slide {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-250px);
    }
}



/* WhatsApp */
a#whats-sitio {
    background: url(../img/icon-whatsapp.svg) no-repeat #25D366 8px center;
    background-size: 36px 36px;
    text-decoration: none;
    border-radius: 44px;
    font-size: 14px;
    position: fixed;
    display: block;
    z-index: 100;
    bottom: 48px;
    right: 24px;
    color: #fff;
    padding: 16px 16px 16px 48px;
}

.error-message {
    color: #cc0033;
    font-size: 12px;
}

.input-group .error-message {
    display: none;
}

.terms-container .error-message {
    min-height: 16px;
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.terms-container.show-error .error-message {
    visibility: visible;
    opacity: 1;
}









/* Permitir scroll después de aceptar/rechazar cookies */
html.cookies-accepted, body.cookies-accepted {
    overflow: auto;
    position: static;
    touch-action: auto;
}

/* Capa de bloqueo */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: block;
}

/* Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #063054;
    opacity: 95%;
    color: white;
    text-align: center;
    padding: 20px 60px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* Contenido del banner */
.cookie-content {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 40px;
}

.cookie-message {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cookie-banner p {
    margin: 0;
    font-size: 16px;
    flex: 1;
    text-align: left;
}

/* Botones del banner */
.cookie-buttons {
    display: flex;
    gap: 10px;
}

    .cookie-buttons button {
        width: 200px;
        padding: 5px 12px;
        border-radius: 5px;
        cursor: pointer;
    }


.accept-cookies {
    background: #fff;
    color: #063054;
    border: 1px solid #fff;
}

.reject-cookies {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-buttons button:hover {
    opacity: 0.7;
}

/* Enlace de información sobre cookies */
.cookie-banner a {
    color: #0099D1;
    text-decoration: underline;
}

/* Ocultar banner tras aceptar/rechazar */
.hide-banner {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie-overlay.hide-overlay {
    display: none;
}
@media (max-width: 900px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner {
        padding: 20px;
    }
}

@media (max-width: 520px) {
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

        .cookie-buttons button {
            width: 100%;
        }
}

body {
    font-family: Roboto;
    
}

section {
    max-width: 1440px;
    margin: 0 auto;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    max-width: 1440px;
    margin: 0 auto;
}

.subheader {
    background-color: #EFEFEF;
}
.button {
    background-color: #187D13;
    padding: 10px 60px 10px 60px;
    color: #ffffff;
    border: 0;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .button:hover {
        background-color: #2ea727;
        cursor: pointer;
    }

.button_price {
    font-weight: 600; 
    font-size: 25px;
    width: 335px;
    height: 74px;
}

.content_header {
    background-color: #EFEFEF;
    padding-top: 60px;
    max-width: 1440px;
    margin: 0 auto;
}

    .content_header h1 {
        font-size: 50px;
        line-height: 50px;
        color: #0A165E;
        font-weight:700;
        text-align: center;
        margin-bottom: 20px;
        
    }

    .content_header h2 {
        font-size: 25px;
        line-height: 30px;
        color: #585B6F;
        font-weight: 500;
        text-align: center;
        padding: 0 140px;
    }

    .content_header h2 b {
        
        font-weight: 700;
       
    }

.img_header {
    background-image: url("../img/header.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 1000px;
    max-height: 1000px;
    margin: 40px auto 0 auto;
}

.content_price {
    justify-content: center;
    min-height: 200px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border: 1px solid #585B6F;
    display: flex;
    flex-direction: column;
    width: 40%;
    align-items: center;
    min-height:432px;
    gap:55px;
    max-width: 1440px;
}

.price_detail {
    width: 40%;
}

.moneda {
    font-size: 35px;
    line-height: 50px;
    color: #BCBCBC;
    font-weight: 500;
}

.precio {
    font-family: Roboto;
    font-weight: 800;
    font-size: 70px;
    line-height: 50px;
    color: #0A165E;
}

.moneda_precio {
    display: flex;
    gap: 8px;
}

.description_price {
    font-family: Roboto;
    font-weight: 400;
    font-size: 40px;
    line-height: 50px;
    color: #585B6F;
}

content_price {
    display: flex;
    flex-direction: column;
    gap:22px;
}

.content_price_detail {
    display: flex;
    gap:40px;
    justify-content:space-around;
    padding: 120px 0;
}

.price_detail h5 {
    font-weight: 700;
    font-size: 30px;
    line-height: 50px;
    color: #0A165E;
}

.price_detail li {
    font-weight: 400;
    font-size: 25px;
    line-height: 45px;
    display: list-item;
}

.price_detail li::marker {
        color: #0A165E;
    }

.price_detail ul {
    list-style: disc;
    padding-left: 20px;
}

.title_section {
    font-weight: 700;
    font-size: 35px;
    line-height: 50px;
    text-align: center;
    color: #0A165E;
    padding: 60px 0;
}

.video {
    background-color: #EFEFEF;
    padding-bottom:40px;
    min-height: 150px;
}

.content_questions {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.desplegable {
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #F6F6F7;
    padding-left: 40px;
}

    .desplegable summary {
        list-style: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;    
        font-weight: 500;
        padding: 20px 0;
        font-family: Inter;
        font-weight: 700;
        font-size: 22px;
        line-height: 50px;
        color: #0A165E;
    }

        /* ocultar flecha nativa */
        .desplegable summary::-webkit-details-marker {
            display: none;
        }

        .desplegable summary::marker {
            display: none;
        }

    

        /* icono custom */
        .desplegable summary::after {
            content: "+";
            font-size: 28px;
            font-weight: 700;
            color: #0A165E;
            margin-right: 40px;
        }

    /* cuando está abierto */
    .desplegable[open] summary::after {
        content: "-";
    }

    /* contenido */
    .desplegable p {
        padding-bottom: 40px;
        font-family: Inter;
        font-weight: 400;
        font-size: 20px;
        line-height: 28px;
        color: #585B6F;
        padding-right: 20px;
       
    }

.img_video {
    background-image: url("../img/video_img.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 454px;
}

.content_video {
    max-width: 834px;
    
   
    margin: 0 auto;
}

.button_video {
    background-image: url("../img/play_1.png");
    width: 166px;
    height: 171px;
    transition: 0.3s;
    opacity: 0.9;
}

.img_video:hover .button_video {
    opacity: 0.8;
}

.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip-container {
    color: #0A165E;
    display: flex;
    align-items: center;
}


.tooltip-icon-suscripcion {
    color: red !important;
    font-size: 14px;
    z-index: -1;
    position: relative;
}

.tooltip-content-left {
    visibility: hidden;
    width: 230px;
    background-color: #fff;
    color: #333;
    text-align: left;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #d1d1d1;
    box-shadow: 5px 2px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    z-index: 100;
    top: 83%;
    left: 224px;
    transform: translate(-85%, -100%);
    font-size: 12px;
    line-height: 1.4;
    opacity: 0;
    display: none;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    overflow: visible;
}

.tooltip-content-header {
    font-size: 14px;
    padding-bottom: 4px;
    margin-bottom: 8px;
    border-bottom: 1px solid #ddd;
    font-weight: 400;
    color: #556789;
}

.tooltip-content-left p > span{
    font-weight: 400;
    color: #556789;
}

.tooltip-content-header b {
    color: #556789;
}

.tooltip-container:hover .tooltip-content-left {
    visibility: visible;
    opacity: 1;
    display: block;
}

.footer-bottom .copyright {
    position: relative;
    font-size: 11px;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
}


.copyright a {
    color: #ffffff;
}

@media (max-width: 1188px) {
    .content_price_detail {
        flex-direction: column;
    }

    .content_price {
        width: 80%;
        margin: 0 auto;

    }

    .price_detail {
        width: 80%;
        margin: 0 auto;
    }
}


@media (max-width: 863px) {
    .content_header h2 {
        font-size:18px;
        line-height: 18px;
        color: #585B6F;
        font-weight: 500;
        text-align: center;
        padding: 0 20px;
    }
    header {
        flex-direction: column;
        justify-content: center;
        padding: 20px 20px;
        gap: 20px;
        align-items: center
    }

    .logo_header {
        width: 200px;
    }

    .precio {
        
        font-size: 42px;
        
    }

    .description_price {
        
        font-size:22px;
        line-height: 30px;
        
    }

    .img_video {
        
        max-width: 90%;
        min-width: 90%;
        min-height: 90%;      
        cursor: pointer;
    }
    footer .text {
        margin-top:20px
    }

    .items-col-3 {
        margin-top: 20px;
        padding-top: 0;
    }

}

@media (max-width: 754px) {
    .content-footer-int {
        flex-direction: column;
        width: 100%;
    }

    .footer-right {
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 1440px) {
    .img_header {
        height: 600px;
        max-height: 600px;
    }
}


@media (max-width: 1760px) {
    .img_header {
        height: 870px;
        max-height: 870px;
    }
}


@media (max-width: 1600px) {
    .img_header {
        height: 770px;
        max-height: 770px;
    }
}

@media (max-width: 1300px) {
    .img_header {
        height: 670px;
        max-height: 670px;
    }
}

@media (max-width: 1200px) {
    .img_header {
        height: 590px;
        max-height: 590px;
    }
}


@media (max-width: 1000px) {
    .img_header {
        height: 490px;
        max-height: 490px;
    }
}

@media (max-width: 800px) {
    .img_header {
        height: 380px;
        max-height: 380px;
    }
}





