:root {
    --primary-color: #013D7B;
    --cta-color: #A81F5E;
    --text-color: #333;
    --background-light: #f0f0f0;
    --max-width: 1200px;
    --hero-cta-color: #A81F5E;
    --arrow-color: #555;
    --service-blue: #093766;
    --service-pink: #A81F5E;
    --service-orange: #f59e0b;
    --bg-light-blue: #f0f8ff;
    --bg-light-pink: #fff0f5;
    --bg-light-orange: #fffbf0;
    --pathologies-blue-overlay: rgba(12, 37, 70, 0.7);
    --button-border-color: #A81F5E;
    --button-bg-color: white;
    --button-text-color: #333;
    --pathologies-text-color: white;
    --section-height: 100vh;
    --ramiro-cta-color: #A81F5E;
    --ramiro-text-color: #707070;
    --ramiro-title-color: #003C7C;
    --ramiro-logo-pink: #D02B6F;
    --join-us-dark-blue: #0C2546;
    --join-us-overlay: rgba(12, 37, 70, 0.7);
    --join-us-cta-bg: white;
    --join-us-cta-text: #A81F5E;
    --join-us-text-color: white;
    --edu-dark-blue: #1A3A6D;
    --edu-text-white: #ffffff;
    --edu-bg-white: #F5FAFF;
    --info-magenta: #7B0355;
    --info-text-magenta: #7B0355;
    --info-bg-white: #ffffff;
    --support-orange: #EF9200;
    --support-bg-white: #FFFBF5;
    --path-magenta: #800050;
    --path-blue-sky: #F5FAFF;
    --path-text-yellow: #FFD700;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    padding-top: 0 !important;
    font-family: Arial, sans-serif;
    background-color: var(--background-light);
}

.header-main {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100% !important;
    z-index: 2000 !important;
    background-color: transparent;
    transition: background-color .4s, box-shadow .4s;
    box-sizing: border-box;
}

.header-main.scrolled {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1) !important;
}

@media screen and (min-width: 1024px) {
    .header-container {
        max-width: var(--max-width, 1200px);
        margin: 0 auto;
        padding: 0 20px;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: var(--header-height);
        box-sizing: border-box;
        position: relative;
    }
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    width: 180px;
    height: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex !important;
    gap: 25px;
    list-style: none !important;
    margin: 0;
    padding: 0;
    align-items: center;
}

.cmp-text {
    padding: 0;
}

.nav-list li {
    margin: 0;
    padding: 0;
}

#onda-prev {
    margin-top: -11%;
    z-index: 9999;
    padding: 0;
        margin-bottom: -1%;
}


.nav-list a {
    text-decoration: none !important;
    color: var(--primary-color, #013d7b);
    font-size: 16px;
    font-weight: 500;
    transition: color .3s;
}

.nav-list a:hover {
    color: var(--cta-color, #a81f5e);
}

.nav-list .btn-cta {
    border: 2px solid var(--cta-color, #a81f5e) !important;
    color: var(--cta-color, #a81f5e) !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    font-size: 14px;
    transition: .3s !important;
}

.nav-list .btn-cta:hover {
    background-color: var(--cta-color, #a81f5e) !important;
    color: #fff !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2100;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color, #013d7b);
    transition: .3s;
    border-radius: 3px;
}

@media (max-width:1023px) {
    .header-container {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }

    .nav-menu {
        position: fixed !important;
        top: 0;
        right: -100% !important;
        width: 300px !important;
        height: 100vh !important;
        background-color: #fff !important;
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 30px 40px !important;
        transition: right .4s cubic-bezier(.4, 0, .2, 1) !important;
        box-shadow: -5px 0 15px rgba(0, 0, 0, .1);
        display: flex !important;
    }

    .nav-menu.active {
        right: 0 !important;
    }

    .nav-list {
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100%;
        gap: 0 !important;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-list a {
        display: block;
        width: 100%;
        padding: 15px 0;
        font-size: 18px;
    }

    .nav-list .btn-cta {
        margin-top: 20px;
        text-align: center;
        border-bottom: none !important;
    }
}

#hero-carousel-fullscreen {
    position: relative;
    width: 100vw;
    height: 95vh;
    overflow: hidden;
    padding: 0;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item.active {
    opacity: 1;
    z-index: 2;
}

.carousel-colum {
    display: flex;
    position: absolute;
    align-items: center;
    width: 90vw;
}

.carousel-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    padding: 0 40px;
    color: #fff;
    width: 100%;
}

.carousel-content.content-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.carousel-content.content-left h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 700px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .4);
}

.carousel-content.content-center {
    text-align: center;
    max-width: 800px;
    color: #333;
}

.carousel-content.content-center h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel-img img {
    max-width: 100%;
    height: auto;
    width: 50rem;
    visibility: visible;
}

.logo-placeholder-slide2 {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle-slide2 {
    font-size: 18px;
    color: var(--text-color);
    opacity: .7;
    font-weight: 500;
}

.btn-hero-cta {
    display: inline-block;
    background-color: var(--hero-cta-color);
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .5s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
}

.btn-hero-cta:hover {
    background-color: #5a0b30;
    cursor: pointer;
    transition: .5s;
    text-decoration: none;
}

.curve-separator {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 5;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    color: var(--arrow-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    transition: background-color .3s;
}

.carousel-control:hover {
    background-color: #f0f0f0;
}

.carousel-control.prev-slide {
    left: 20px;
}

.carousel-control.next-slide {
    right: 20px;
}

.carousel-indicators-bottom {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicators-bottom .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, .5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color .3s;
}

.carousel-indicators-bottom .dot.active {
    background-color: #fff;
    transform: scale(1.1);
}

@media (max-width:768px) {
    #hero-carousel-fullscreen {
        height: 100vh;
    }

    .carousel-content.content-center h1,
    .carousel-content.content-left h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .carousel-content {
        padding: 0 20px;
    }

    .btn-hero-cta {
        padding: 12px 30px;
        font-size: 14px;
    }

    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .carousel-control.prev-slide {
        left: 10px;
    }

    .carousel-control.next-slide {
        right: 10px;
    }
}

.custom-shape-divider-bottom-1765914867 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 9;
}

.custom-shape-divider-bottom-1765914867 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 169px;
}

.custom-shape-divider-bottom-1765914867 .shape-fill {
    fill: #FFFFFF;
}

#services-section {
    padding: 60px 0;
    background-color: #fff;
}

.services-container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    display: inline;
}

.service-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
    transition: transform .3s;
    min-height: 250px;
    margin: 2rem 0;
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.card-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.btn-service-cta {
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: .5s;
}

.btn-service-cta:hover {
    opacity: .85;
    text-decoration: none;
    transition: .5s;
}

.card-illustration {
    flex: 1;
    align-items: center;
    padding-left: 30px;
    position: relative;
}

.illustration-placeholder {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #666;
}

.illustration-placeholder img {
    max-width: 100%;
    height: auto;
}

.theme-blue {
    background: linear-gradient(90deg, transparent, var(--bg-light-blue) 20%);
    border-radius: 0 20rem 20rem 0;
    box-shadow: 5px 5px 5px #093766;
    width: 80%;
    justify-self: start;
}

.theme-blue .card-title {
    color: var(--service-blue);
}

.theme-blue .btn-service-cta {
    background-color: var(--service-blue);
    margin-top: 1rem;
}

.theme-pink {
    background: linear-gradient(90deg, var(--bg-light-pink) 80%, transparent);
    border-radius: 20rem 0 0 20rem;
    box-shadow: -5px 5px 5px #a81f5e;
    width: 80%;
    justify-self: end;
    direction: rtl;
}

.theme-pink .card-content {
    align-items: center;
}

.theme-pink .card-title {
    color: var(--service-pink);
}

.theme-pink .btn-service-cta {
    background-color: var(--service-pink);
    margin-top: 1rem;
}

.theme-orange {
    background: linear-gradient(90deg, transparent, var(--bg-light-orange) 20%);
    border-radius: 0 20rem 20rem 0;
    box-shadow: 5px 5px 5px #f59e0b;
    width: 80%;
    justify-self: start;
}

.theme-orange .card-title {
    color: var(--service-orange);
}

.theme-orange .btn-service-cta {
    background-color: var(--service-orange);
    margin-top: 1rem;
}

@media (max-width:992px) {
    .services-container {
        gap: 30px;
    }

    .service-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        min-height: auto;
    }

    .card-content {
        align-items: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .card-illustration {
        padding-left: 0;
        padding-top: 10px;
    }

    .card-title {
        font-size: 24px;
    }

    .theme-blue,
    .theme-orange,
    .theme-pink {
        border-radius: 10px;
        flex-direction: column;
    }

    .theme-pink .card-content {
        align-items: center;
    }
}

.custom-shape-divider-top-1765915084 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 9;
}

.custom-shape-divider-top-1765915084 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 169px;
    transform: rotateY(180deg);
}

.custom-shape-divider-top-1765915084 .shape-fill {
    fill: #FFFFFF;
}

.curve-separator-top {
    width: 100%;
    height: 100px;
    z-index: 2;
    position: relative;
    display: block;
    margin-bottom: -1px;
}

#pathologies-section {
    position: relative;
    text-align: center;
    width: 100%;
    min-height: var(--section-height);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(/content/dam/intelligentcontent/unbranded/tucomplemento/co/es/new-design/img/grupo-de-medicos-con-papeles-en-la-clinica.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    padding: 0 20px;
}

#pathologies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--pathologies-blue-overlay);
    z-index: 2;
}

.pathologies-title {
    position: relative;
    z-index: 3;
    font-weight: 700;
    font-size: 3rem;
    color: var(--pathologies-text-color);
    margin-bottom: 50px;
    line-height: 1.2;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, .5);
}

.country-buttons {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 5rem;
}

.btn-country {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--button-bg-color);
    color: #a81f5e;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: .5px;
    font-size: 16px;
    border: 2px solid var(--button-border-color);
    transition: .5s;
}

.btn-country:hover {
    background-color: var(--button-border-color);
    color: #fff;
    text-decoration: none;
    transition: .5s;
}

@media (max-width:768px) {
    #pathologies-section {
        min-height: 100vh;
    }

    .pathologies-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .country-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
    }

    .btn-country {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
    }

    .curve-separator-top {
        height: 70px;
    }
}

#ramiro-section {
    padding: 80px 40px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    height: 90vh;
    align-content: center;
}

.ramiro-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.ramiro-column {
    flex: 1;
    padding: 20px;
}

.illustration-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 0;
}

.ramiro-logo img {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
}

.ramiro-main-illustration img {
    max-width: 100%;
    height: auto;
    display: block;
}

.content-column {
    text-align: right;
}

.ramiro-title {
    font-size: 36px;
    font-style: italic;
    font-weight: 700;
    color: var(--ramiro-title-color);
    margin-bottom: 30px;
    line-height: 1.1;
}

.ramiro-text-block {
    font-size: 16px;
    color: var(--ramiro-text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-ramiro-cta {
    display: inline-block;
    background-color: var(--ramiro-cta-color);
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    transition: .5s;
}

.btn-ramiro-cta:hover {
    background-color: #5a0b30;
    text-decoration: none;
    transition: .5s;
}

@media (max-width:992px) {
    #ramiro-section {
        padding: 40px 20px;
        height: 170vh;
    }

    .ramiro-container {
        flex-direction: column;
    }

    .illustration-column {
        order: 1;
        width: 100%;
        margin-bottom: 30px;
    }

    .content-column {
        order: 2;
        text-align: center;
        width: 100%;
        padding: 0;
    }

    .ramiro-title {
        font-size: 30px;
        text-align: center;
    }

    .ramiro-text-block {
        text-align: center;
    }

    .ramiro-logo img {
        max-width: 200px;
    }

    .ramiro-decor-top-right {
        width: 100px;
        height: 100px;
        top: 0;
        right: 0;
    }

    .content-column .btn-ramiro-cta {
        display: block;
        margin: 10px auto 0;
    }
}

#join-us-section {
    position: relative;
    min-height: 80vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(/content/dam/intelligentcontent/unbranded/tucomplemento/co/es/new-design/img/fondo-medico-abstracto-3d-con-celulas-virales-y-particulas-flotantes.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    padding: 0 20px;
}

#join-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--join-us-overlay);
    z-index: 2;
}

.join-us-title {
    position: relative;
    z-index: 3;
    font-weight: 700;
    font-size: 3rem;
    color: var(--join-us-text-color);
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, .5);
    text-align: center;
}

.btn-join-us-cta {
    position: relative;
    z-index: 3;
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--join-us-cta-bg);
    color: var(--join-us-cta-text);
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 30px;
    border: 1px solid #a81f5e;
    font-weight: 700;
    letter-spacing: .5px;
    font-size: 16px;
    transition: .5s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

.btn-join-us-cta:hover {
    background-color: #a81f5e;
    color: #fff;
    transform: translateY(-2px);
    transition: .5s;
    text-decoration: none;
}

.curve-separator-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 4;
}

@media (max-width:768px) {
    #join-us-section {
        height: 100vh;
    }

    .join-us-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .btn-join-us-cta {
        padding: 12px 25px;
        font-size: 14px;
    }

    .curve-separator-bottom {
        height: 70px;
    }
}

.custom-shape-divider-bottom-1765915513 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 9;
}

.custom-shape-divider-bottom-1765915513 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 160px;
}

.custom-shape-divider-bottom-1765915513 .shape-fill {
    fill: #013D7B;
}

#subpage-banner-coockies,
#subpage-banner-tucomplemento {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/content/dam/intelligentcontent/unbranded/tucomplemento/co/es/new-design/img/AdobeStock_1668423094.webp);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

#subpage-banner-patologias {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/content/dam/intelligentcontent/unbranded/tucomplemento/co/es/new-design/img/grupo-de-medicos-con-papeles-en-la-clinica.webp);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

#subpage-banner-ramirosoy {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/content/dam/intelligentcontent/unbranded/tucomplemento/co/es/new-design/img/ramiro-banner.webp);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 37, 70, .5);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    font-family: Arial, sans-serif;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 2px;
}

.breadcrumbs {
    font-size: 1.1rem;
    margin-top: 10px;
    font-weight: 400;
    opacity: .9;
}

.breadcrumbs span:last-child {
    font-weight: 600;
}

.wave-container {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

.wave-container svg {
    width: 100%;
    height: 120px;
}

@media (max-width:768px) {
    .subpage-banner {
        height: 50vh;
    }

    .banner-title {
        font-size: 2.2rem;
        padding: 0 20px;
    }

    .breadcrumbs {
        font-size: .9rem;
    }

    .wave-container svg {
        height: 60px;
    }
}

#edu-detail-section {
    padding: 80px 5%;
    background-color: var(--edu-bg-white);
    display: flex;
    justify-content: center;
}

.edu-detail-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
}

.edu-left-column {
    flex: 1;
    text-align: center;
}

.edu-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--edu-dark-blue);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.edu-illustration img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.edu-right-column {
    flex: 1.2;
}

.edu-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-top: 20px;
}

.edu-info-card {
    background-color: var(--edu-dark-blue);
    padding: 40px 25px;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 180px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}

.card-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: var(--edu-dark-blue);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    border: 2px solid var(--edu-dark-blue);
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
}

.card-text {
    color: var(--edu-text-white);
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

@media (max-width:992px) {
    .edu-detail-container {
        flex-direction: column;
        text-align: center;
    }

    .edu-main-title {
        font-size: 2.5rem;
    }

    .edu-cards-grid {
        gap: 40px;
    }
}

@media (max-width:600px) {
    .edu-cards-grid {
        grid-template-columns: 1fr;
    }

    .edu-main-title {
        font-size: 2rem;
    }

    .edu-info-card {
        min-height: auto;
        padding: 50px 20px 30px;
    }
}

#info-detail-section {
    padding: 80px 5%;
    background-color: var(--info-magenta);
    display: grid;
    justify-content: center;
    height: 100vh;
    align-items: center;
}

.info-detail-container {
    max-width: 1100px;
    width: 100%;
}

.info-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.info-illustration img {
    max-width: 400px;
    height: auto;
}

.info-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: 2px;
}

.info-cards-row {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.info-white-card {
    background-color: var(--info-bg-white);
    flex: 1;
    padding: 60px 25px 40px;
    border-radius: 30px;
    position: relative;
    text-align: center;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.info-card-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: var(--info-text-magenta);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    border: 2px solid var(--info-magenta);
}

.info-card-text {
    color: var(--info-text-magenta);
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
}

@media (max-width:992px) {
    .info-header {
        flex-direction: column;
        text-align: center;
    }

    .info-main-title {
        font-size: 2.5rem;
    }

    .info-cards-row {
        flex-wrap: wrap;
    }

    .info-white-card {
        flex: none;
        width: 45%;
        margin-top: 30px;
    }
}

@media (max-width:650px) {
    .info-main-title {
        font-size: 2rem;
    }

    .info-illustration img {
        max-width: 100%;
    }

    .info-white-card {
        width: 100%;
    }
}

#support-detail-section {
    padding: 100px 5%;
    background-color: var(--support-bg-white);
    display: grid;
    justify-content: center;
    height: 90vh;
}

.support-detail-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
}

.support-left-column {
    flex: 1.2;
}

.support-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
}

.support-info-card {
    background-color: var(--support-orange);
    padding: 40px 25px;
    border-radius: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px;
    box-shadow: 0 8px 20px rgba(239, 146, 0, .2);
}

.support-card-number {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: var(--support-orange);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    border: 2.5px solid var(--support-orange);
}

.support-card-text {
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
}

.support-right-column {
    flex: 1;
    text-align: center;
}

.support-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--support-orange);
    margin-bottom: 40px;
    letter-spacing: 1.5px;
}

.support-illustration img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width:992px) {
    .support-detail-container {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .support-main-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
}

@media (max-width:600px) {
    .support-cards-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .support-main-title {
        font-size: 2.2rem;
    }

    .support-info-card {
        min-height: auto;
        padding: 45px 20px 30px;
    }
}

.custom-shape-divider-bottom-1766003514 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 9;
}

.custom-shape-divider-bottom-1766003514 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.custom-shape-divider-bottom-1766003514 .shape-fill {
    fill: #F5FAFF;
}

.custom-shape-divider-bottom-1766003622 {
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    background: #f5faff;
}

.custom-shape-divider-bottom-1766003622 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 181px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1766003622 .shape-fill {
    fill: #7B0355;
}

.custom-shape-divider-top-1766004770 {
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #fffbf5;
}

.custom-shape-divider-top-1766004770 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 181px;
}

.custom-shape-divider-top-1766004770 .shape-fill {
    fill: #7B0355;
}

#pathology-section {
    padding: 5rem 0;
    background-color: var(--path-blue-sky);
    text-align: center;
}

.filter-container {
    padding: 5rem 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 30px;
    border: 2px solid var(--path-magenta);
    background: #fff;
    color: var(--path-magenta);
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
    min-width: 140px;
    font-size: 1.2rem;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--path-magenta);
    color: #fff;
}

.filter-instruction-bar {
    background-color: var(--path-magenta);
    padding: 15px;
}

.filter-instruction-bar p {
    color: #f8da45;
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: none;
}

.pathology-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 5rem;
}

.pathology-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    transition: transform .3s;
}

.pathology-card:hover {
    transform: translateY(-5px);
}

.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.card-footer {
    background-color: var(--path-magenta);
    padding: 25px 20px;
    display: flex;
    justify-content: center;
}

.btn-pathology {
    background-color: #fff;
    color: var(--path-magenta);
    text-decoration: none;
    padding: 10px 10px 10px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    font-weight: 700;
    font-size: 1.2rem;
    transition: .5s;
}

.btn-pathology:hover {
    background: #5a0b30;
    color: #fff;
    border: 1px solid #fff;
    text-decoration: none;
    transition: .5s;
}

.arrow-icon {
    background-color: var(--path-magenta);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    font-style: normal;
    transition: .5s;
}

.btn-pathology:hover .arrow-icon {
    background-color: #fff;
    color: var(--path-magenta);
    transition: .5s;
}

@media (max-width:992px) {
    .pathology-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width:650px) {
    #pathology-section {
        padding: 5rem 1rem;
        background-color: var(--path-blue-sky);
        text-align: center;
    }

    .pathology-grid {
        grid-template-columns: 1fr;
    }

    .filter-btn {
        width: 100%;
    }

    .btn-pathology {
        width: 90%;
    }

    .custom-shape-divider-bottom-1766068766 svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 80px;
    }
}

.custom-shape-divider-bottom-1766068766 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 9;
}

.custom-shape-divider-bottom-1766068766 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 181px;
}

.custom-shape-divider-bottom-1766068766 .shape-fill {
    fill: var(--path-blue-sky);
}

#hpn-hero {
    background: linear-gradient(180deg, #013d7b 70%, #fff);
    padding-top: 60px;
    position: relative;
}

.hpn-grid-70-30 {
    display: grid;
    grid-template-columns: 70% 30%;
    max-width: 1300px;
    margin: 0 auto;
    align-items: flex-end;
}

.hpn-hero-text {
    padding: 40px;
    align-self: center;
}

.hpn-main-title {
    font-size: 3rem;
    font-weight: 900;
    font-style: italic;
    text-align: right;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.text-yellow {
    color: #fde400;
}

.hpn-hero-disclaimer {
    color: #fff;
    font-size: .85rem;
    line-height: 1.4;
    text-align: right;
    max-width: 600px;
    margin-left: auto;
}

.hpn-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.magenta-line {
    height: 10px;
    background-color: #a81f5e;
    width: 100%;
}

@media (max-width:768px) {
    .hpn-grid-70-30 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hpn-hero-disclaimer {
        text-align: center;
        margin: 0 auto;
    }
}

#hpn-definition {
    background-color: #fff;
    padding-top: 80px;
    margin-bottom: -8px;
}

#hpn-definition2 {
    background-color: #fff;
    padding-top: 0px;
    margin-bottom: -8px;
}


.hpn-grid-50-50 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
    gap: 30px;
}

.hpn-def-image {
    display: flex;
    justify-content: center;
}

.char-50-50 {
    max-width: 80%;
    height: auto;
}

.title-with-icon {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.magenta-circle-icon {
    background-color: #a81f5e;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 8px;
}

.ico-corazon,
.ico-preg,
.ico-shield {
    max-width: 100%;
    height: auto;
}

.hpn-sec-title {
    font-size: 3rem;
    font-weight: 900;
    font-style: italic;
    color: #036;
}

.hpn-body-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a49;
}

@media (max-width:768px) {
    .hpn-grid-50-50 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .title-with-icon {
        flex-direction: column;
    }

    .hpn-def-image {
        order: 2;
    }

    .hpn-def-text {
        order: 1;
    }
}

#hpn-complemento {
    background-color: #f39200;
    overflow: hidden;
    padding: 0;
}

.hpn-grid-30-70 {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: stretch;
}

.hpn-comp-image {
    width: 100%;
}

.img-full-cover {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.hpn-comp-text {
    padding: 60px 80px;
    color: #fff;
    align-content: center;
}

.title-icon-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.magenta-icon-small {
    background-color: #a81f5e;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 6px;
}

.hpn-comp-title {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3rem;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
}

.hpn-comp-body {
    max-width: 700px;
}

.hpn-comp-body p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 30px;
}

.hpn-call-to-action {
    font-weight: 700;
    margin-top: 40px;
}

.hpn-btn-download {
    display: inline-block;
    background-color: #2e3192;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: .5s;
}

.hpn-btn-download:hover {
    background-color: #1a1c5e;
    text-decoration: none;
    transition: .5s;
}

@media (max-width:768px) {
    .hpn-grid-30-70 {
        grid-template-columns: 1fr;
    }

    .hpn-comp-image {
        height: 300px;
    }

    .hpn-comp-text {
        padding: 40px 20px;
        text-align: center;
    }

    .title-icon-row {
        flex-direction: column;
        align-items: center;
    }

    .hpn-comp-title {
        font-size: 2.5rem;
    }

    .hpn-btn-download {
        width: 100%;
    }
}

#hpn-seccion-causas {
    margin: 0 auto;
    padding: 6%;
    background-color: #fff;
}

#hpn-seccion-causas2 {
    margin: 0 auto;
    padding: 6%;
        background-color: #0D3691;
    border-bottom: 8pt solid #a81f5e;
}

.hpn-header-causas {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.hpn-icono-magenta {
    background-color: #a81f5e;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.hpn-titulo-causas {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3rem;
    color: #036;
    margin: 0;
}

.hpn-texto-causas p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 25px;
}

.hpn-destacado {
    color: #333 !important;
}

.hpn-imagen-completa-causas {
    width: 100%;
    margin-top: 40px;
}


.hpn-imagen-completa-causas2 {
    width: 100%;
    margin-top: -1%;
}

.hpn-imagen-completa-causas img {
    width: 100%;
    height: auto;
    display: block;
}


.hpn-imagen-completa-causas2 {
    width: 100%;
    margin-top: 0px;
}

.hpn-imagen-completa-causas2 img {
    width: 100%;
    height: auto;
    display: block;
}


@media (max-width:768px) {
    .hpn-header-causas {
        flex-direction: column;
        text-align: center;
    }

    .hpn-titulo-causas {
        font-size: 2.2rem;
    }

    .hpn-texto-causas p {
        font-size: 1.1rem;
        text-align: left;
    }
}

#hpn-sintomas-container {
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.hpn-sintomas-grid {
    display: flex;
    width: 100%;
    min-height: 600px;
}

.hpn-col-azul {
    width: 60%;
    background-color: #1a3a6c;
    color: #fff;
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hpn-header-sintomas {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.hpn-circulo-check {
    background-color: #a81f5e;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 12px;
}

.hpn-titulo-sintomas {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3.5rem;
    line-height: 1;
    margin: 0;
}

.hpn-contenido-sintomas p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 25px;
}

.hpn-texto-negrita {
    font-weight: 700;
    margin-top: 40px;
}

.hpn-boton-naranja {
    display: inline-block;
    background-color: #f3a33f;
    color: #fff;
    padding: 18px 45px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 20px;
    width: fit-content;
    transition: .5s;
}

.hpn-boton-naranja:hover {
    background-color: #b27122;
    text-decoration: none;
    transition: .5s;
}

.hpn-col-blanca {
    width: 40%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.hpn-imagen-cuerpo {
    max-width: 90%;
    height: auto;
    object-fit: contain;
}

@media (max-width:992px) {
    .hpn-sintomas-grid {
        flex-direction: column;
    }

    .hpn-col-azul,
    .hpn-col-blanca {
        width: 100%;
    }

    .hpn-titulo-sintomas {
        font-size: 3rem;
        line-height: 1;
    }
}

#hpn-diagnostico {
    width: 100%;
    background-color: #fff;
    padding: 60px 0;
    height: 80vh;
    align-content: center;
}

.hpn-diag-grid {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hpn-diag-media {
    width: 40%;
    padding-right: 40px;
}

.img-responsive {
    width: 100%;
    height: auto;
    display: block;
}

.hpn-diag-content {
    width: 60%;
}

.diag-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.diag-icon-magenta {
    background-color: #a81f5e;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.diag-title {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3rem;
    color: #1a3a6c;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
}

.diag-body p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    color: #666;
    margin-bottom: 40px;
    max-width: 90%;
}

.btn-diag-teal {
    display: inline-block;
    background-color: #4da1a1;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: .5s;
}

.btn-diag-teal:hover {
    background-color: #3d8282;
    text-decoration: none;
    transition: .5s;
}

@media (max-width:992px) {
    .hpn-diag-grid {
        flex-direction: column;
        text-align: center;
    }

    .hpn-diag-media {
        width: 80%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hpn-diag-content {
        width: 100%;
    }

    .diag-header {
        flex-direction: column;
        align-items: center;
    }

    .diag-title {
        font-size: 3rem;
        line-height: 1;
    }

    .diag-body p {
        max-width: 100%;
        font-size: 1.1rem;
    }

    .btn-diag-teal {
        width: 100%;
    }
}

#hpn-control-full {
    width: 100%;
    background-color: #fff;
    position: relative;
}

.hpn-franja-superior {
    width: 100%;
    height: 15px;
    background-color: #1a3a6c;
    margin-bottom: 0;
}

.hpn-control-wrapper {
    padding: 0 10rem;
    text-align: center;
}

.hpn-control-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

.hpn-icon-magenta-q {
    background-color: #a81f5e;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.hpn-control-title {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3rem;
    color: #b51c58;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
}

.azul-hpn {
    color: #1a3a6c;
}

.hpn-control-body p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    max-width: 1100px;
    margin: 0 auto 50px;
    text-align: left;
}

.hpn-control-action {
    margin-bottom: 60px;
}

.hpn-btn-magenta {
    display: inline-block;
    background-color: #a81f5e;
    color: #fff;
    padding: 18px 50px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: .5s;
}

.hpn-btn-magenta:hover {
    background-color: #730f3d;
    text-decoration: none;
    transition: .5s;
}

.hpn-control-footer-img {
    width: 100%;
    display: flex;
    justify-content: center;
}

.img-100 {
    max-width: 800px;
    width: 100%;
    height: auto;
}

@media (max-width:1200px) {
    .hpn-control-wrapper {
        padding: 0 5rem;
    }
}

@media (max-width:768px) {
    .hpn-control-wrapper {
        padding: 0 20px;
    }

    .hpn-control-header {
        flex-direction: column;
        gap: 15px;
    }

    .hpn-control-title {
        font-size: 2.2rem;
    }

    .hpn-control-body p {
        font-size: 1.1rem;
    }

    .hpn-btn-magenta {
        width: 100%;
        padding: 15px 20px;
    }
}

#hpn-vivir {
    width: 100%;
    background-color: #fff;
    position: relative;
    padding: 0;
}

.hpn-franja-magenta {
    width: 100%;
    height: 12px;
    background-color: #a81f5e;
}

.hpn-vivir-grid {
    display: flex;
    align-items: center;
    padding: 0 10rem;
    gap: 5rem;
}

.hpn-vivir-media {
    width: 40%;
}

.img-fluid {
    width: 100%;
    height: auto;
    display: block;
}

.hpn-vivir-content {
    width: 60%;
    padding-right: 6rem;
}

.vivir-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.vivir-icon-magenta {
    background-color: #a81f5e;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 12px;
}

.vivir-body p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 20px;
}

@media (max-width:1200px) {
    .hpn-vivir-grid {
        padding: 0 5rem;
        gap: 3rem;
    }
}

@media (max-width:992px) {
    .hpn-vivir-grid {
        flex-direction: column;
        padding: 0 20px;
        text-align: center;
    }

    .hpn-vivir-media {
        width: 100%;
        max-width: 450px;
        margin-bottom: 30px;
    }

    .hpn-vivir-content {
        width: 100%;
    }

    .vivir-header {
        flex-direction: column;
    }

    .vivir-title {
        font-size: 3rem;
        line-height: 1;
    }

    .vivir-body p {
        text-align: left;
        font-size: 1.1rem;
    }
}

#shua-hero {
    width: 100%;
    position: relative;
    background: linear-gradient(180deg, #003a70 0, #0056a3 60%, #a5c7e9 100%);
    overflow: hidden;
    padding: 0 !important;
}

.shua-hero-container {
    display: flex;
    align-items: flex-end;
    padding: 0 10rem;
    min-height: 550px;
}

.shua-hero-image {
    width: 40%;
    display: flex;
    justify-content: flex-start;
}

.shua-hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.shua-hero-content {
    align-self: center;
    padding-left: 5rem;
}

.shua-hero-title {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3rem;
    color: #fff;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.yellow-text {
    color: #ffde00;
}

.shua-hero-disclaimer p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: #fff;
    line-height: 1.4;
    max-width: 700px;
    margin: 0;
}

.shua-bottom-bar {
    width: 100%;
    height: 12px;
    background-color: #a81f5e;
}

@media (max-width:1100px) {
    .shua-hero-container {
        padding: 40px 5rem;
    }
}

@media (max-width:768px) {
    .shua-hero-container {
        flex-direction: column;
        padding: 40px 20px;
        align-items: center;
        text-align: center;
    }

    .shua-hero-image {
        width: 80%;
        margin-bottom: 30px;
    }

    .shua-hero-content {
        width: 100%;
    }

    .shua-hero-title {
        font-size: 2.2rem;
    }

    .shua-hero-disclaimer p {
        text-align: left;
    }
}

#shua-definicion {
    width: 100%;
    background-color: #fff;
    padding: 0 !important;
}

.shua-hero-image-full img {
    width: 100%;
    height: auto;
    display: block;
}

.shua-content-wrapper {
    padding: 60px 10rem;
}

.shua-header-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.shua-icon-magenta {
    background-color: #a81f5e;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 6px;
}

.shua-main-title {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3rem;
    color: #1a3a6c;
    text-transform: uppercase;
    margin: 0;
}

.shua-text-block p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 25px;
}

.shua-acronimo-list {
    margin-top: 50px;
}

.shua-acronimo-item {
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3rem;
    line-height: 1;
}

.letra-azul {
    color: #1a3a6c;
}

.palabra-magenta {
    color: #a81f5e;
}

.shua-def-text {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    font-style: normal;
    color: #1a3a6c;
    margin-left: 10px;
}

@media (max-width:1200px) {
    .shua-content-wrapper {
        padding: 40px 5rem;
    }
}

@media (max-width:768px) {
    .shua-content-wrapper {
        padding: 40px 20px;
    }

    .shua-main-title {
        font-size: 2.2rem;
    }

    .shua-acronimo-item {
        flex-direction: column;
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .shua-def-text {
        margin-left: 0;
    }
}

#shua-mat {
    width: 100%;
    background-color: #00968f;
    position: relative;
    overflow: hidden;
    padding: 0 !important;
}

.shua-mat-top-bar {
    width: 100%;
    height: 12px;
    background-color: #a81f5e;
}

.shua-mat-grid {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.shua-mat-content {
    width: 60%;
    padding: 80px 10rem;
    color: #fff;
    align-content: center;
}

.mat-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.mat-icon-magenta {
    background-color: #a81f5e;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 6px;
}

.mat-title {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3rem;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
}

.mat-body p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.mat-call-to-action {
    font-weight: 700;
    margin-top: 40px;
}

.btn-mat-magenta {
    display: inline-block;
    background-color: #a81f5e;
    color: #fff;
    padding: 15px 45px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 10px;
    transition: background .3s;
}

.shua-mat-media {
    width: 40%;
}

@media (max-width:1100px) {
    .shua-mat-content {
        padding: 60px 5rem;
    }
}

@media (max-width:992px) {
    .shua-mat-grid {
        flex-direction: column;
    }

    .shua-mat-content,
    .shua-mat-media {
        width: 100%;
    }

    .shua-mat-content {
        padding: 40px 20px;
        text-align: center;
    }

    .mat-header {
        flex-direction: column;
    }

    .btn-mat-magenta {
        width: 100%;
    }

    .shua-mat-media {
        height: 300px;
    }
}

#shua-causas {
    width: 100%;
    background-color: #fff;
    padding: 80px 0;
}

.shua-causas-wrapper {
    padding: 0 10rem;
}

.causas-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.causas-icon-magenta {
    background-color: #a81f5e;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 6px;
}

.causas-title {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3rem;
    color: #1a3a6c;
    text-transform: uppercase;
    margin: 0;
}

.causas-col p,
.causas-intro p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 25px;
}

.causas-intro {
    margin-bottom: 60px;
}

.causas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.causas-subtitle {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.italic-magenta {
    color: #a81f5e;
}

@media (max-width:1200px) {
    .shua-causas-wrapper {
        padding: 0 5rem;
    }
}

@media (max-width:992px) {
    .shua-causas-wrapper {
        padding: 0 20px;
    }

    .causas-header {
        flex-direction: column;
        text-align: center;
    }

    .causas-subtitle,
    .causas-title {
        font-size: 2.2rem;
    }

    .causas-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

#shua-sintomas-v2 {
    width: 100%;
    background-color: #036;
    position: relative;
    overflow: hidden;
    padding: 0 !important;
}

.shua-sintomas-top-bar {
    width: 100%;
    height: 12px;
    background-color: #a81f5e;
}

.shua-sintomas-grid {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.shua-sintomas-content {
    width: 60%;
    padding: 80px 10rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sintomas-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
}

.sintomas-icon-magenta {
    background-color: #a81f5e;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 12px;
}

.sintomas-title {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0;
}

.sintomas-body p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.sintomas-destacado {
    font-weight: 700;
    margin-top: 10px;
}

.btn-sintomas-naranja {
    display: inline-block;
    background-color: #f3a33f;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 20px;
    width: fit-content;
}

.shua-sintomas-media {
    width: 40%;
}

.img-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width:1200px) {
    .shua-sintomas-content {
        padding: 60px 5rem;
    }
}

@media (max-width:992px) {
    .shua-sintomas-grid {
        flex-direction: column;
    }

    .shua-sintomas-content,
    .shua-sintomas-media {
        width: 100%;
    }

    .shua-sintomas-content {
        padding: 40px 20px;
    }

    .sintomas-title {
        font-size: 2.2rem;
    }

    .shua-sintomas-media {
        height: 350px;
    }
}

#shua-diagnostico {
    width: 100%;
    background-color: #fff;
    padding: 0 !important;
}

.shua-diag-wrapper {
    padding: 5rem 10rem;
    text-align: center;
}

.shua-diag-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.shua-diag-icon {
    background-color: #a81f5e;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 0;
}

.shua-diag-title {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3rem;
    color: #1a3a6c;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
}

.shua-diag-body p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
    text-align: left;
}

.text-magenta-bold {
    color: #a81f5e;
    font-weight: 700;
}

.shua-diag-action {
    margin-top: 40px;
}

.btn-shua-teal {
    display: inline-block;
    background-color: #00968f;
    color: #fff;
    padding: 16px 45px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
}

.shua-diag-footer-image {
    width: 100%;
    margin-top: 20px;
}

.img-full {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width:1200px) {
    .shua-diag-wrapper {
        padding: 0 5rem 40px;
    }
}

@media (max-width:768px) {
    .shua-diag-wrapper {
        padding: 0 20px 40px;
    }

    .shua-diag-header {
        flex-direction: column;
    }

    .shua-diag-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .shua-diag-body p {
        text-align: left;
    }

    .btn-shua-teal {
        width: 100%;
        padding: 15px 20px;
    }
}

#shua-vivir {
    width: 100%;
    background-color: #fff;
    position: relative;
    padding: 0 !important;
}

.shua-vivir-top-bar {
    width: 100%;
    height: 12px;
    background-color: #1a3a6c;
}

.shua-vivir-grid {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.shua-vivir-media {
    width: 40%;
}

.img-full-height {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shua-vivir-content {
    width: 60%;
    padding: 80px 10rem;
    background-color: #fff;
    align-content: center;
}

.vivir-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
}

.vivir-title {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3rem;
    color: #1a3a6c;
    text-transform: uppercase;
    margin: 0;
}

.vivir-body p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.vivir-alerta-magenta {
    color: #a81f5e !important;
    font-weight: 400;
}

@media (max-width:1200px) {
    .shua-vivir-content {
        padding: 60px 5rem;
    }
}

@media (max-width:992px) {
    .shua-vivir-grid {
        flex-direction: column;
    }

    .shua-vivir-content,
    .shua-vivir-media {
        width: 100%;
    }

    .shua-vivir-media {
        height: 400px;
    }

    .shua-vivir-content {
        padding: 40px 20px;
        text-align: left;
    }

    .vivir-title {
        font-size: 2.2rem;
    }
}

#ramiro-video-section {
    width: 100%;
    background-color: #fff;
    padding: 0;
}

.ramiro-wrapper {
    padding: 0 10rem;
}

.ramiro-header-xd {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 5rem;
}

.ramiro-title-multi {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3rem;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -1px;
}

.color-teal {
    color: #008685;
}

.color-magenta {
    color: #f9195c;
}

.color-navy {
    color: #1a4672;
}

.ramiro-instruction {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: #1a3a6c;
    margin-top: 15px;
}

.ramiro-icon-arrow {
    margin-top: 10px;
}

.ramiro-icon-arrow img {
    width: 25px;
}

.ramiro-grid-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.ramiro-col-50 {
    width: 50%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.ramiro-img-xd {
    max-width: 450px;
    width: 100%;
    height: auto;
}

.video-kaltura-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border: 5px solid #000;
    background-color: #000;
}

.video-kaltura-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width:1100px) {
    .ramiro-wrapper {
        padding: 0 5rem;
    }
}

@media (max-width:768px) {
    .ramiro-wrapper {
        padding: 0 20px;
    }

    .ramiro-title-multi {
        font-size: 2.2rem;
    }

    .ramiro-grid-content {
        flex-direction: column;
    }

    .ramiro-col-50 {
        width: 100%;
        margin-bottom: 30px;
    }

    .ramiro-col-50:first-child {
        order: 2;
    }
}

#ramiro-presento {
    width: 100%;
    background-color: #1a4672;
    position: relative;
    padding-top: 80px;
    padding-bottom: 0;
    overflow: hidden;
}

.ramiro-presento-wrapper {
    padding: 0 10rem;
}

.presento-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 5rem;
}

.presento-title {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3rem;
    color: #ffe819;
    text-transform: uppercase;
    margin: 0;
}

.presento-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.presento-col-img,
.presento-col-video {
    width: 50%;
}

.kaltura-frame-xd {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border: 6px solid #000;
    background: #000;
}

.kaltura-frame-xd iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ramiro-saludo {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin-left: auto;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100px;
}

@media (max-width:1200px) {
    .ramiro-presento-wrapper {
        padding: 0 5rem;
    }
}

@media (max-width:992px) {
    .ramiro-presento-wrapper {
        padding: 0 20px;
    }

    .presento-title {
        font-size: 2.2rem;
    }

    .presento-grid {
        flex-direction: column;
    }

    .presento-col-img,
    .presento-col-video {
        width: 100%;
    }

    .presento-col-img {
        order: 2;
    }

    .presento-col-video {
        order: 1;
        margin-bottom: 40px;
    }
}

#entrevista-milagros {
    width: 100%;
    background-color: #fff;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 0;
}

.entrevista-title-multi {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3rem;
    text-transform: uppercase;
    margin: 0;
}

.c-magenta {
    color: #f9195c;
}

.c-teal {
    color: #008685;
}

.entrevista-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.ramiro-interviewer {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
}

.video-kaltura-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border: 5px solid #000;
    background: #000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
}

.video-kaltura-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wave-bottom-navy {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-bottom-navy svg {
    display: block;
    width: 100%;
    height: 100px;
}

@media (max-width:768px) {
    .entrevista-wrapper {
        padding: 0 20px;
    }

    .entrevista-title-multi {
        font-size: 2.2rem;
    }

    .entrevista-grid {
        flex-direction: column;
    }

    .entrevista-col {
        width: 100%;
    }

    .entrevista-col:first-child {
        order: 2;
        margin-top: 30px;
    }

    .entrevista-col:last-child {
        order: 1;
    }
}

#entrevista-yeimi {
    width: 100%;
    background-color: #1a4672;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 0;
    overflow: hidden;
}

.entrevista-yeimi-wrapper {
    padding: 0 10rem;
}

.yeimi-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 5rem;
}

.yeimi-title {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3rem;
    color: #ffe819;
    text-transform: uppercase;
    margin: 0;
}

.yeimi-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.yeimi-col-img,
.yeimi-col-video {
    width: 50%;
}

.video-kaltura-border {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border: 6px solid #000;
    background: #000;
}

.video-kaltura-border iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ramiro-yeimi {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    margin-left: auto;
}

.wave-white-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-white-bottom svg {
    display: block;
    width: 100%;
    height: 100px;
}

@media (max-width:1200px) {
    .entrevista-yeimi-wrapper {
        padding: 0 5rem;
    }
}

@media (max-width:992px) {
    .entrevista-yeimi-wrapper {
        padding: 0 20px;
    }

    .yeimi-title {
        font-size: 2.2rem;
    }

    .yeimi-grid {
        flex-direction: column;
    }

    .yeimi-col-img,
    .yeimi-col-video {
        width: 100%;
    }

    .yeimi-col-img {
        order: 2;
        margin-top: 20px;
    }

    .yeimi-col-video {
        order: 1;
    }
}

#entrevista-paola {
    width: 100%;
    background-color: #fff;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 0;
}

.entrevista-wrapper {
    padding: 0 10rem;
}

.entrevista-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 5rem;
}

.entrevista-title-paola {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3rem;
    text-transform: uppercase;
    margin: 0;
}

.color-azul-navy {
    color: #2e466e;
}

.entrevista-col {
    width: 50%;
    display: flex;
    justify-content: center;
}

.ramiro-img-fluid {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.video-paola-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border: 5px solid #000;
    background: #000;
}

.video-paola-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wave-navy-base {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-navy-base svg {
    display: block;
    width: 100%;
    height: 100px;
}

@media (max-width:1200px) {
    .entrevista-wrapper {
        padding: 0 5rem;
    }
}

@media (max-width:768px) {
    .entrevista-wrapper {
        padding: 0 20px;
    }

    .entrevista-title-paola {
        font-size: 2.2rem;
    }

    .entrevista-col {
        width: 100%;
    }

    .entrevista-col:first-child {
        order: 2;
        margin-top: 30px;
    }

    .entrevista-col:last-child {
        order: 1;
    }
}

#ramiro-despedida {
    width: 100%;
    background-color: #1a4672;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 0;
    overflow: hidden;
}

.despedida-wrapper {
    padding: 0 10rem;
}

.despedida-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 5rem;
}

.despedida-title {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3rem;
    color: #ffe819;
    text-transform: uppercase;
    margin: 0;
}

.despedida-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.despedida-col {
    width: 50%;
}

.video-kaltura-final {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border: 6px solid #000;
    background: #000;
}

.video-kaltura-final iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ramiro-final-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin-left: auto;
}

.wave-cierre-blanca {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-cierre-blanca svg {
    display: block;
    width: 100%;
    height: 100px;
}

@media (max-width:1200px) {
    .despedida-wrapper {
        padding: 0 5rem;
    }
}

@media (max-width:992px) {
    .despedida-wrapper {
        padding: 0 20px;
    }

    .despedida-title {
        font-size: 2.2rem;
    }

    .despedida-grid {
        flex-direction: column;
    }

    .despedida-col {
        width: 100%;
    }

    .despedida-col:last-child {
        margin-top: 30px;
    }
}

#cierre-ramiro {
    width: 100%;
    background-color: #fff;
    padding-top: 5rem;
    padding-bottom: 0;
}

.cierre-wrapper {
    padding: 0 10rem;
}

.cierre-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 5rem;
}

.cierre-title-multi {
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3rem;
    text-transform: uppercase;
    margin: 0;
}

.color-rojo-claro {
    color: #f9195c;
}

.color-azul-navy {
    color: #008685;
}

.cierre-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.cierre-col {
    width: 50%;
    display: flex;
    justify-content: center;
}

.ramiro-final-static {
    max-width: 420px;
    width: 100%;
    height: auto;
}

.video-final-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border: 6px solid #000;
    background: #000;
}

.video-final-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width:1200px) {
    .cierre-wrapper {
        padding: 0 5rem;
    }
}

@media (max-width:768px) {
    .cierre-wrapper {
        padding: 0 20px;
    }

    .cierre-title-multi {
        font-size: 2.2rem;
    }

    .cierre-grid {
        flex-direction: column;
    }

    .cierre-col {
        width: 100%;
    }
}

:root {
    --hpn-yellow: #fde400;
    --hpn-magenta: #A81F5E;
    --hpn-dark-blue: #003366;
    --hpn-text-gray: #4a4a49;
    --doc-bg: #f4f7f6;
    --paper-white: #ffffff;
    --text-color: #4a3a2a;
    --accent-color: #2e466e;
    --border-color: #d1d1d1;
    --padding-desktop: 4rem;
    --padding-mobile: 1.5rem;
    --dark-blue: #013D7B;
    --link-color-dark: #3fb4ff;
    --light-gray-bg: #e8e8e8;
    --copyright-bg: #820052;
    --text-legal: #555;
}

#document-root {
    background-color: var(--doc-bg);
    padding: 3rem 10rem;
    display: flex;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.document-page {
    background-color: var(--paper-white);
    width: 100%;
    max-width: 1200px;
    min-height: 100vh;
    border-radius: 1rem;
    padding: var(--padding-desktop);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    line-height: 1.6;
    margin: 5rem 0;
}

.doc-main-title {
    font-size: 2.5rem;
    color: var(--text-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.doc-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.doc-text {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1.2rem;
    text-align: justify;
}

.doc-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.doc-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.doc-table td,
.doc-table th {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
}

.doc-table th {
    background-color: #f8f9fa;
    font-weight: 700;
}

@media (max-width:1024px) {
    #document-root {
        padding: 2rem 5rem;
    }
}

@media (max-width:768px) {
    #document-root {
        padding: 1rem 0;
    }

    .document-page {
        padding: var(--padding-mobile);
        border: none;
        box-shadow: none;
        width: 768px;
    }

    .doc-main-title {
        font-size: 1.8rem;
    }
}

@media (max-width:425px) {
    #document-root {
        padding: 1rem 0;
    }

    .document-page {
        padding: var(--padding-mobile);
        border: none;
        box-shadow: none;
        width: 425px;
    }

    .doc-main-title {
        font-size: 1.8rem;
    }
}

@media (max-width:375px) {
    #document-root {
        padding: 1rem 0;
    }

    .document-page {
        padding: var(--padding-mobile);
        border: none;
        box-shadow: none;
        width: 375px;
    }

    .doc-main-title {
        font-size: 1.8rem;
    }
}

.footer-contact-section {
    background-color: var(--dark-blue);
    padding: 50px 0;
    color: #fff;
    margin-top: -10px;
}

.contact-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.contact-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.contact-title::after {
    content: '';
    display: block;
    width: 130px;
    height: 3px;
    background-color: #f59e0b;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.contact-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.contact-card {
    flex: 1;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-modal-linea {
    color: #fff;
    background: 0 0;
    padding: 1rem;
    border: 1px solid #fff;
    border-radius: 5rem;
    transition: .5s;
    cursor: pointer;
    text-decoration: none;
}

.card-title img {
    max-width: 100%;
    height: auto;
    width: 22px;
}

.card-title p {
    font-size: 1rem;
    font-weight: 100;
    margin: 0;
    padding-left: 1rem;
}

.btn-modal-linea:hover {
    color: var(--dark-blue);
    border: 1px solid #fff;
    background: #fff;
    transition: .5s;
    cursor: pointer;
    text-decoration: none;
}

.card-label {
    font-size: 12px;
    font-weight: 700;
    opacity: .7;
    padding-top: 15px;
    margin: 10px 0;
}

.card-link {
    color: var(--link-color-dark);
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 20px;
    word-break: break-all;
}

.btn-privacy {
    display: inline-block;
    color: var(--dark-blue);
    background-color: #fff;
    border-radius: 20px;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 20px;
    transition: .5s;
}

.btn-privacy:hover {
    background-color: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1px solid #fff;
    transition: .5s;
    text-decoration: none;
}

.card-schedule {
    font-size: 14px;
    margin-top: auto;
    line-height: 1.5;
}

.footer-cookies-section {
    background-color: #00264d;
    padding: 15px 20px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    color: #fff;
}

.cookies-link {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: .5s;
}

.cookies-link:hover {
    color: #ac7009;
    text-decoration: underline;
    transition: .5s;
}

.footer-legal-section {
    background-color: var(--light-gray-bg);
}

.legal-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 0;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
}

.legal-text {
    flex: 3;
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-legal);
    text-align: justify;
    padding: 2%;
}

.legal-text p {
    margin-bottom: 10px;
}

.legal-logos {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo-astrazeneca img,
.logo-tucomplemento-legal img {
    max-width: 100%;
    height: auto;
    width: 15rem;
}

.footer-copyright-section {
    background-color: var(--copyright-bg);
    padding: 20px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    margin-bottom: -10px;
}

@media (max-width:992px) {
    .contact-cards {
        flex-direction: column;
        gap: 20px;
    }

    .contact-card {
        padding: 20px;
    }

    .legal-container {
        flex-direction: column-reverse;
        gap: 30px;
        padding: 2rem;
    }

    .legal-logos {
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
        align-items: center;
    }

    .logo-astrazeneca,
    .logo-tucomplemento-legal {
        width: 120px;
        height: 30px;
        line-height: 30px;
    }
}

@media screen and (min-width:320px) and (max-width:767px) {
    .logo-placeholder img {
        max-width: 100%;
        height: auto;
        width: 8rem;
    }

    .carousel-colum {
        display: flex;
        position: absolute;
        align-self: anchor-center;
    }

    .carousel-img {
        display: none;
    }

    .carousel-img img {
        visibility: hidden;
    }

    .custom-shape-divider-bottom-1765914867 svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 80px;
    }

    .custom-shape-divider-top-1765915084 svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 80px;
        transform: rotateY(180deg);
    }

    .custom-shape-divider-bottom-1765915513 svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 80px;
    }

    #info-detail-section,
    #support-detail-section {
        height: auto;
    }
}

.new {
    display: none !important;
}

@media screen and (min-width: 1025px) {
    .tocomplemento-form .form-holder {
        height: auto;
        width: 1200px;
        justify-self: center;
        background-image: url(/content/dam/intelligentcontent/unbranded/tucomplemento/co/es/images/ramiro-form.png);
        background-repeat: no-repeat;
        background-position: left;
        background-size: contain;
        border-radius: 8px;
        overflow: hidden;
        padding-left: 55%;
        position: relative;
    }

    .modal.exit-ramp-modal .modal__close {
        max-width: 681px;
        position: relative;
        margin: auto 0 0;
        width: 60%;
        color: #ff0f00;
        text-align: right;
        right: 10px;
        padding-right: 15px;
        padding-top: 15px;
        top: 2.5rem;
    }

    .modal__close {
        position: relative;
        margin: auto 0 0;
        text-align: right;
        font-size: 20px;
        top: 3rem;
        z-index: 1000;
        padding: 0;
        border: none !important;
        background-color: transparent;
        cursor: pointer;
        max-width: 1150px;
        outline: 0 !important;
        width: 100vw;
    }
}


@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tocomplemento-form .form-holder {
        height: auto;
        width: 980px;
        justify-self: center;
        background: none !important;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
    }

    .modal.exit-ramp-modal .modal__close {
        max-width: 400px;
        position: relative;
        margin: auto 0 0;
        width: 60%;
        color: #ff0f00;
        text-align: right;
        right: 10px;
        padding-right: 15px;
        padding-top: 15px;
        top: 2.5rem;
    }

    .modal__close {
        position: relative;
        margin: auto 0 0;
        text-align: right;
        font-size: 20px;
        top: 3rem;
        z-index: 1000;
        padding: 0;
        border: none !important;
        background-color: transparent;
        cursor: pointer;
        max-width: 900px;
        outline: 0 !important;
        width: 100vw;
    }
}


@media screen and (min-width: 320px) and (max-width: 768px) {
    .tocomplemento-form .form-holder {
        height: auto;
        width: auto;
        justify-self: center;
        background: none !important;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
    }

    .modal.exit-ramp-modal .modal__close {
        max-width: 400px;
        position: relative;
        margin: auto 0 0;
        width: 60%;
        color: #ff0f00;
        text-align: right;
        right: 10px;
        padding-right: 15px;
        padding-top: 15px;
        top: 2.5rem;
    }

    .modal__close {
        position: relative;
        margin: auto 0 0;
        text-align: right;
        font-size: 20px;
        top: 3rem;
        z-index: 1000;
        padding: 0;
        border: none !important;
        background-color: transparent;
        cursor: pointer;
        max-width: 400px;
        outline: 0 !important;
        width: 100vw;
    }
}

.cmp-modal__modalbox .modal-box__content {
    padding: 0 !important;
}

#field-group-674459a061d28d0002cffd23 .cmp-dynamicform__form-label-container label {
    display: none;
}

#field-group-674459a061d28d0002cffd23 .cmp-dynamicform__form-label-container::after {
    content: 'Prescripción Médica';
    color: #013d7c;
    font-weight: 400;
}

#field-group-674459a061d28d0002cffd22 .cmp-dynamicform__form-label-container label {
    display: none;
}

#field-group-674459a061d28d0002cffd22 .cmp-dynamicform__form-label-container::before {
    top: -25px;
    position: relative;
    content: 'Patología';
    color: #003d7c;
    font-weight: 400;
}

#field-group-68ae3c9658c28b0002300f2d .cmp-dynamicform__form-label-container label {
    display: none;
}

#field-group-68ae3c9658c28b0002300f2d .cmp-dynamicform__form-label-container::before {
    top: -25px;
    position: relative;
    content: 'País';
    color: #013d7c;
    font-weight: 400;
}

.cmp-dynamicform__form-group {
    position: relative;
    margin: 20px 0;
}

.cmp-dynamicform__form-group input {
    width: 100%;
    box-sizing: border-box;
}

.cmp-dynamicform__form-group label,
.cmp-dynamicform__form-group:hover label {
    transform: translateY(-100%);
    font-size: 12px;
    color: #007bff;
    width: max-content;
}

.cmp-dynamicform__form-group.has-error label {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group:hover {
    border-bottom-color: #333 !important;
}

#field-group-674459a061d28d0002cffd24 .cmp-dynamicform__control-label span,
.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .text-danger:nth-child(5),
.cmp-dynamicform__form-group:nth-child(5) label {
    display: none;
}

#field-674459a061d28d0002cffd24 .cmp-dynamicform__vcenter label input {
    width: 6% !important;
    margin-left: 0 !important;
}

.checkbox-text,
a {
    font-family: Roboto-Light;
    line-height: 20px;
    font-size: 16px;
}

.checkbox-text {
    color: #212529;
}

.checkbox-text a {
    color: #007bff;
    font-weight: 700;
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: none;
}

.cmp-dynamicform__clear-btn {
    display: none;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form {
    width: 100%;
    padding: 50px !important;
    background: #fff;
}

.cmp-dynamicform__form-label-container {
    position: absolute;
    top: 9px;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #7f7f7f;
    font-size: 18px;
    -webkit-transition: .3s linear;
    transition: .3s linear;
    font-family: Roboto-Light;
}

.cmp-dynamicform__form-label-container label .text-danger {
    display: none;
}

.checkbox label {
    width: auto !important;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .has-error input {
    margin-bottom: 9px;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group {
    position: relative;
    width: 100%;
    -webkit-transition: .3s linear;
    transition: .3s linear;
    margin-bottom: 5px !important;
    min-height: 51px;
}

.captch-holder {
    display: none;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group:first-child,
.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group:nth-child(6),
.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group:nth-child(7),
.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group:nth-child(8) {
    border-bottom: none;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group:first-child {
    margin-bottom: 38px !important;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group:first-child h4 {
    margin-bottom: 0 !important;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group:nth-child(7) {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .button-group {
    margin-top: 0 !important;
    text-align: end;
}

#field-group-674459a061d28d0002cffd22 {
    font-weight: 1000;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-control-container input {
    width: 100% !important;
    outline: 0 !important;
    background-color: transparent;
    font-size: 20px;
    font-weight: 700;
    color: #013d7c;
    margin-bottom: 5px;
    border: 1px solid #013d7c !important;
    border-radius: 5px;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .form-control:not(textarea) {
    opacity: 1;
    width: 100%;
    height: 32px;
    padding: 5px 12px;
    box-shadow: none;
    border: 1px solid #003d7c;
}

#field-674459a061d28d0002cffd22 select,
#field-68ae3c9658c28b0002300f2d select {
    padding-left: 0;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 2px;
    color: #013d7c;
    border: 1px solid #013d7c;
    border-radius: 5px;
}

#field-674459a061d28d0002cffd22 select:focus,
#field-68ae3c9658c28b0002300f2d select:focus {
    color: #013d7c;
}

.cmp-dynamicform-v2 .cmp-dynamicform__form-control-container {
    position: static !important;
}

.cmp-dynamicform-v2 .cmp-dynamicform__form-group .inputfile-1+label {
    padding: 8px 14px;
    background-color: #013c7c !important;
    border: 1px solid #013d7c;
    border-radius: 5px;
    font-size: 18px;
    display: block;
    transform: none;
}

#field-group-674459a061d28d0002cffd23 .cmp-dynamicform__form-label-container {
    position: inherit;
}

.cmp-dynamicform-v2 .cmp-dynamicform__form-group .inputfile-1+label span,
.cmp-dynamicform-v2 .inputfile+label svg {
    display: none;
}

.cmp-dynamicform-v2 .cmp-dynamicform__form-group .inputfile-1+label::after {
    content: "Seleccionar Archivo";
    color: #fff;
    font-weight: 400;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group button {
    background: #830051;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    color: #fff;
    width: 15rem;
    border-radius: 5rem;
    border: 0;
    margin-top: 1rem;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group button::after {
    content: "ENVIAR";
    color: #fff;
    font-weight: 400;
    font-family: Roboto-Bold;
    letter-spacing: 3.1px;
    display: inline-block;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group button:hover {
    color: #fff;
    background-color: #db106f !important;
}

.cmp-dynamicform-v2 .cmp-dynamicform__generated-form .cmp-dynamicform__form-group button span {
    display: none;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    background: #1a3a6ce8;
    opacity: 0;
    cursor: context-menu !important;
    justify-items: center;
}

.modal--confirm .modal-box {
    text-align: center;
}

.modal--noOverlayClose {
    cursor: default;
}

.modal--noClose .modal__close {
    display: none;
}

.modal__close svg {
    width: 16px;
}

.modal__close svg path {
    fill: #b3b3b3;
}

.modal__closeLabel {
    display: none;
}

.modal__close:hover {
    color: #fff;
}

.modal-box {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-bottom: auto;
    width: 60%;
    border-radius: 4px;
    background: #fff;
    opacity: 1;
    cursor: auto;
    will-change: transform, opacity;
    max-width: 740px;
}

.modal-box__footer {
    padding: 1.5rem 2rem;
    width: auto;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: #f5f5f5;
    cursor: auto;
}

.modal-box__footer::after {
    display: table;
    clear: both;
    content: "";
}

.modal-box__footer--sticky {
    position: fixed;
    bottom: -200px;
    z-index: 10001;
    opacity: 1;
    transition: bottom .3s ease-in-out .3s;
}

.modal-enabled {
    position: fixed;
    right: 0;
    left: 0;
    overflow: hidden;
}

.modal--visible .modal-box__footer {
    bottom: 0;
}

.modal--visible {
    visibility: visible;
    opacity: 1;
}

.modal--visible .modal-box {
    -webkit-animation: .2s cubic-bezier(.68, -.55, .265, 1.55) forwards scale;
    animation: .2s cubic-bezier(.68, -.55, .265, 1.55) forwards scale;
}

.modal--overflow {
    overflow-y: scroll;
    padding-top: 8vh;
}

.modal-btn {
    display: inline-block;
    margin: 0 .5rem;
    padding: 1rem 2rem;
    border: none;
    background-color: grey;
    box-shadow: none;
    color: #fff;
    vertical-align: middle;
    text-decoration: none;
    font-size: inherit;
    font-family: inherit;
    line-height: normal;
    cursor: pointer;
    transition: background-color .4s;
}

.modal-btn--primary {
    background-color: #3498db;
}

.modal-btn--danger {
    background-color: #e74c3c;
}

.modal-btn--default {
    background-color: #34495e;
}

.modal-btn--pull-left {
    float: left;
}

.modal-btn--pull-right {
    float: right;
}

@-webkit-keyframes scale {
    0% {
        opacity: 0;
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scale {
    0% {
        opacity: 0;
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.modal.exit-ramp-modal {
    z-index: 99999;
    padding: 40px;
}

.modal.exit-ramp-modal .modal-box {
    max-width: 681px;
    margin-top: unset;
    border-radius: 0;
}

.exit-ramp-title {
    color: #000;
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: 'BebasNeue Bold';
    text-align: center;
}

.exit-ramp-body {
    font-size: 16px;
    text-align: center;
    line-height: 1.4;
    color: #444;
    font-family: Roboto-Light;
}

.exit-ramp-actions {
    text-align: center;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 1.5rem;
    flex-direction: row-reverse;
}

.exit-ramp-actions .exit-ramp-cancel,
.exit-ramp-actions .exit-ramp-continue {
    min-width: 175px;
    height: 50px;
    border: 1px solid #485695 !important;
    background-color: #485695 !important;
    color: #fff;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'BebasNeue Bold';
    text-decoration: none;
    cursor: pointer;
    font-size: 22px;
}

.exit-ramp-actions .exit-ramp-cancel {
    border: 1px solid #a4cb8c !important;
    background-color: #a4cb8c !important;
}

.modal.exit-ramp-modal .modal__close svg {
    width: 20px;
}

.modal.exit-ramp-modal .modal__close svg path {
    fill: #000 !important;
}

.exit-ramp-content {
    padding: 50px;
}

@media (max-width:991px) {
    .modal.exit-ramp-modal .modal-box {
        max-width: 90%;
        width: 80%;
    }

    .modal.exit-ramp-modal .modal__close {
        max-width: 80%;
        width: 100%;
    }
}

/* --- NUEVAS REGLAS PARA MEJORAR MOBILE (ADICIONADAS) --- */

@media (max-width: 767px) {

    /* Permitir scroll si el contenido es más alto que la pantalla del móvil */
    .modal {
        overflow-y: auto !important;
        display: block;
        /* Cambiamos a block para que el scroll fluya mejor en móviles */
    }

    .modal.exit-ramp-modal {
        padding: 15px !important;
    }

    /* Forzar que el modal ocupe casi todo el ancho y se separe de los bordes */
    .modal.exit-ramp-modal .modal-box {
        width: 95% !important;
        max-width: 100% !important;
        margin: 60px auto 20px !important;
        /* Margen superior para no chocar con el borde */
    }

    /* Reducir el padding interno excesivo de 50px */
    .exit-ramp-content {
        padding: 25px 15px !important;
    }

    /* Ajustar el tamaño del título */
    .exit-ramp-title {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }

    /* Apilar los botones verticalmente para que no se corten */
    .exit-ramp-actions {
        flex-direction: column !important;
        gap: 12px !important;
    }

    /* Botones a ancho completo */
    .exit-ramp-actions .exit-ramp-cancel,
    .exit-ramp-actions .exit-ramp-continue {
        width: 100% !important;
        min-width: 100% !important;
        height: 45px !important;
        font-size: 18px !important;
    }

    /* Reposicionar el botón de cierre (X) en móviles */
    .modal.exit-ramp-modal .modal__close {
        width: 100% !important;
        max-width: 95% !important;
        top: 3.5rem !important;
        margin: 0 auto !important;
        right: 0 !important;
    }
}

/* Ajuste para pantallas muy pequeñas (iPhone SE, etc) */
@media (max-width: 380px) {
    .exit-ramp-title {
        font-size: 1.25rem;
    }

    .exit-ramp-content {
        padding: 15px;
    }
}

#tucomplemento-footer {
    background-color: #0c1a4a;
}

#tucomplemento-footer .footer {
    position: relative;
    width: 100%;
    height: 100%;
}

#tucomplemento-footer .footer__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#tucomplemento-footer .footer__bg .icon1 {
    position: absolute;
    left: -6px;
    bottom: -49px;
    width: 100%;
    max-width: 976px;
}

#tucomplemento-footer .footer__bg .icon1 img {
    width: 100%;
    height: 100%;
}

#tucomplemento-footer .footer__top {
    position: relative;
    padding-top: 160px;
    border-bottom: 1px solid #25315c;
}

#tucomplemento-footer .footer__top .footer__logo {
    text-align: center;
    margin-bottom: 20px;
}

#tucomplemento-footer .footer__top .footer__logo img {
    height: 120px;
}

#tucomplemento-footer .footer__top .container {
    padding-left: 357px;
    padding-right: 260px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    flex-wrap: wrap;
}

#tucomplemento-footer .footer__top .container .footer__top-blocks {
    max-width: 270px;
    flex: 0 0 270px;
    margin-top: 50px;
    margin-bottom: 30px;
    color: #fff;
}

#tucomplemento-footer .footer .container>div {
    width: 50%;
    display: flex;
    justify-content: space-between;
}

#tucomplemento-footer .footer .container .footer-right-block {
    justify-content: space-around;
}

#tucomplemento-footer .footer .container>div>.footer__top-blocks>.title {
    margin-left: 1px;
    margin-top: 3px;
    margin-bottom: 38px;
    padding-bottom: 16px;
    font-size: 38px;
    font-family: 'BebasNeue Bold';
    position: relative;
    width: 100%;
}

#tucomplemento-footer .footer .container>div>.footer__top-blocks>.title::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    height: 3px;
    width: 62px;
    background-color: #003d7c;
}

#tucomplemento-footer .footer .container>div>.footer__top-blocks>.claim p {
    font-size: 8.5px;
}

#tucomplemento-footer .footer__top-blocks .content-item .text p,
#tucomplemento-footer .footer__top-blocks li {
    line-height: 1.5;
}

#tucomplemento-footer .footer .container>div>.footer__top-blocks .content .content-item {
    display: flex;
    margin-bottom: 22px;
}

#tucomplemento-footer .footer .container>div>.footer__top-blocks .content .content-item>.icon {
    width: 40px;
    min-width: 40px;
}

#tucomplemento-footer .footer .container>div>.footer__top-blocks .content .content-item>.icon img {
    max-width: 70%;
}

#tucomplemento-footer .footer .container>div>.footer__top-blocks a {
    color: #fff;
    transition: .3s linear;
    text-decoration: none;
    cursor: pointer;
}

#tucomplemento-footer .footer .container>div>.footer__top-blocks a:hover {
    color: #a71f5e;
    text-decoration: none;
}

#tucomplemento-footer .footer .container>div>.footer__top-blocks img {
    max-width: 80%;
}

#tucomplemento-footer .footer .container>div>.footer__top-blocks .content .content-item:first-child .text a {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

#tucomplemento-footer .footer__bottom {
    position: relative;
    padding: 25px;
}

#tucomplemento-footer .footer__bottom p {
    padding: 0;
    margin: 0;
    color: #555f81;
    text-align: center;
}

#tucomplemento-footer .to-top {
    display: none;
    border-radius: 8px;
    background-color: #003d7c;
    box-shadow: 8.135px 18.271px 51px 0 rgba(31, 61, 157, .4);
    position: fixed;
    right: 80px;
    bottom: 41px;
    width: 50px;
    height: 52px;
    z-index: 20;
    color: #fff;
    transition: .3s linear;
    overflow: hidden;
    cursor: pointer;
}

#tucomplemento-footer .to-top:hover {
    background-color: #972f5d;
}

#tucomplemento-footer .to-top>.fa {
    display: block;
    width: 100%;
    line-height: 45px;
    text-align: center;
    font-size: 24px;
    padding-left: 5px;
}

@media (min-width:1199px) and (max-width:1317px) {
    #tucomplemento-footer .footer-right {
        padding-left: 56px;
    }
}

@media (min-width:1601px) and (max-width:1697px) {
    #tucomplemento-footer .footer-right {
        padding-left: 44px;
    }
}

@media (max-width:767px) {
    #tucomplemento-footer .footer .container>div>.footer__top-blocks>.title {
        margin-bottom: 20px;
    }

    #tucomplemento-footer .footer .container>div>.footer__top-blocks .content .content-item:first-child .text a {
        display: block;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.3;
    }
}

@media (max-width:1600px) {
    #tucomplemento-footer .footer__top .container {
        padding-left: 118px;
        padding-right: 100px;
    }
}

@media (min-width:576px) {
    #tucomplemento-footer .footer__top .container {
        max-width: 540px;
    }
}

@media (min-width:768px) {
    #tucomplemento-footer .footer__top .container {
        max-width: 720px;
    }
}

@media (min-width:992px) {
    #tucomplemento-footer .footer__top .container {
        max-width: 1920px;
    }
}

@media (max-width:1199px) {
    #tucomplemento-footer .footer__top {
        padding-top: 100px;
    }

    #tucomplemento-footer .footer__top .container {
        justify-content: space-around;
    }

    #tucomplemento-footer .footer__top-blocks .content {
        -webkit-box-pack: center;
    }

    #tucomplemento-footer .footer .container>div {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #tucomplemento-footer .footer .container>div>.footer__top-blocks .content .content-item {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    #tucomplemento-footer .to-top {
        width: 40px;
        height: 40px;
        right: 41px;
        bottom: 45px;
    }

    #tucomplemento-footer .to-top>.fa {
        line-height: 35px;
    }

    #tucomplemento-footer .footer .container>div>.footer__top-blocks>.title::after {
        display: none;
    }

    #tucomplemento-footer .footer__top .container .footer__top-blocks {
        padding-right: 0;
        flex: 0;
    }
}

@media (max-width:579px) {
    #tucomplemento-footer .to-top {
        bottom: 57px;
    }
}

#home-page #container-wrapper,
#home-page .cmp-carousel-horizontal .cmp-carousel__indicators {
    max-width: 1920px;
    margin: 0 auto;
}

#home-page .cmp-container__backgroundImage--enabled {
    width: 100%;
    height: 900px;
    padding-top: 310px;
    overflow: hidden;
    position: relative;
    object-fit: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    margin: 0;
}

#home-page .cmp-carousel-horizontal .cmp-carousel__indicator {
    width: 16px;
    height: 16px;
    margin: 5px 7px;
    background: gray;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s;
    border-radius: 30px;
    cursor: pointer;
}

#home-page .slide-item__block {
    padding-left: 349px;
    margin-top: -153px;
    position: relative;
    z-index: 99;
}

#home-page .slide-item__title {
    margin-left: -2px;
    text-transform: uppercase;
    font-size: 78px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    width: 100%;
    color: #003d7c;
    font-family: 'BebasNeue Bold';
    margin-bottom: 10px;
}

#home-page .slide-item__title img {
    max-width: 22%;
}

#home-page .btn_blue {
    padding: 25px 37.5px;
    box-sizing: border-box;
    background-color: #003d7c;
    overflow: hidden;
    transition: .3s;
    position: relative;
    cursor: pointer;
    font-family: Roboto-Bold;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3.1px;
    display: inline-block;
    color: #fff;
    border-radius: 8px;
    text-transform: uppercase;
    text-decoration: none;
}

#home-page .cmp-carousel-horizontal .cmp-carousel__indicators {
    position: absolute;
    top: 70%;
    left: 346px;
    z-index: 1;
    width: auto !important;
    display: none;
}

#home-page .cmp-carousel__action-text {
    display: none;
}

#home-page .cmp-carousel__indicator--active {
    width: 47px !important;
    -webkit-transition: .3s;
    transition: .3s;
    background-color: #a71f5e !important;
}

#home-page {
    position: relative;
}

#home-page #banner-side-image {
    position: absolute;
    top: 0;
    width: 48vw;
}

#home-page #middle-boxes {
    overflow: visible !important;
    position: static !important;
}

#home-page .services__item {
    margin-top: 50px;
    height: 275px;
    flex: 0 0 270px;
    max-width: 270px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #003d7c;
    text-align: center;
    transition: .3s linear;
    border-radius: 26px;
    cursor: pointer;
    color: #fff;
    padding: 95px;
}

#home-page .services__item-title {
    font-size: 32px;
    margin-bottom: 5px;
    font-family: 'BebasNeue Bold';
}

#home-page .about__our-misson {
    position: relative;
    width: 40%;
}

#home-page .about__text {
    padding-top: 20px;
    width: 60%;
    padding-left: 68px;
}

#home-page .about__our-misson-img {
    overflow: hidden;
    border-radius: 8px;
    z-index: 5;
    position: relative;
}

#home-page .about__our-misson-img img {
    -webkit-transition: .3s linear;
    transition: .3s linear;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    width: 100%;
    height: 458px;
}

#home-page .about__text>h2 {
    margin-top: 4px;
    font-family: Roboto-Bold;
    font-size: 32px;
    line-height: 1;
    color: #333;
}

#home-page .about__text>p {
    font-family: Roboto-Light;
    font-size: 18px;
    line-height: 30px;
    color: #333;
    margin-bottom: 22px;
}

#home-page .read-more {
    font-family: Roboto-Bold;
    font-size: 16.5px;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    -webkit-transition: .3s linear;
    transition: .3s linear;
    color: #003d7c;
    font-weight: 700;
    text-decoration: none;
}

#home-page .about__text img {
    height: 40%;
    width: 40%;
}

#home-page .family-section {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    justify-content: space-evenly;
    margin: 141px auto 160px;
    padding-left: 349px;
    padding-right: 282px;
    max-width: 1920px;
}

#home-page .family-section .saber-space {
    margin-top: 40px;
    display: none;
}

#home-page .cmp-container__backgroundImage--enabled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to right, #fff 20%, transparent);
}

#home-page #middle-boxes .cmp-carousel__item--swipe {
    justify-content: space-between !important;
    float: none;
    padding-left: 349px;
    padding-right: 295px;
    max-width: 1920px;
    margin: -150px auto 0;
    cursor: initial;
    transition: none;
}

#home-page #middle-boxes .cmp-carousel__actions {
    position: absolute;
    top: 255px;
    left: 50%;
    display: none;
}

#home-page .cmp-carousel__content--swipe--desktop {
    width: 100% !important;
}

#home-page .services__outer-item a:hover {
    text-decoration: none;
}

@media (max-width:500px) {
    #home-page .cmp-carousel-horizontal .cmp-carousel__indicators {
        top: 85% !important;
        left: 39% !important;
    }
}

@media (max-width:1199px) {
    #home-page .slide-item__title {
        margin-top: -115px;
        line-height: 1;
    }

    #home-page .about__our-misson-img img {
        max-width: 529px;
    }

    #home-page .family-section {
        margin-top: 100px;
        text-align: center;
    }

    #home-page .slide-item__block {
        padding-left: 0;
        margin-left: 0;
        text-align: center;
        margin-top: -153px;
    }

    #home-page .cmp-container__backgroundImage--enabled {
        width: 100%;
        height: 675px;
        padding-top: 350px;
    }

    #home-page .about__our-misson {
        text-align: center;
        padding-left: 0;
        width: 80%;
    }

    #home-page .about__our-misson-img {
        width: 100%;
    }

    #home-page .about__text {
        max-width: 450px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 450px;
        flex: 0 0 450px;
        padding-left: 0;
    }

    #home-page .cmp-carousel-horizontal .cmp-carousel__indicators {
        top: 80%;
        left: 46%;
    }
}

@media (max-width:991px) {
    #home-page .slide-item__title {
        font-size: 40px;
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 15px;
        padding-right: 15px;
    }

    #home-page .cmp-container__backgroundImage--enabled {
        height: 600px;
        padding-top: 180px;
    }

    #home-page #middle-boxes .cmp-carousel__item--swipe {
        flex-direction: column;
        align-items: center;
        margin-top: 0 !important;
    }

    #home-page .family-section {
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    #home-page .about__text {
        padding-top: 0;
    }

    #home-page .about__text>h2 {
        margin-top: 30px;
    }

    #home-page .about__text>p {
        margin-top: 40px;
    }

    #home-page .slide-item__block {
        margin-top: 50px;
    }
}

@media (max-width:767px) {
    #home-page .about__our-misson-img img {
        height: auto;
    }

    #home-page .family-section {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    #home-page .about__our-misson {
        width: auto !important;
        height: auto !important;
    }

    #home-page .cmp-container__backgroundImage--enabled {
        height: 500px;
        padding-top: 170px;
        background-position: center;
    }

    #home-page .about__text {
        max-width: 100%;
        padding-top: 0;
    }

    #home-page .about__text>h2 {
        margin-top: 30px;
        font-size: 20px;
    }

    #home-page .about__text>p {
        margin-top: 30px;
        font-size: 16px;
    }

    #home-page .slide-item__block {
        padding-left: 0;
    }

    #home-page .btn_blue {
        padding: 20px;
        letter-spacing: 0;
    }
}

@media (max-width:1400px) {
    #home-page #middle-boxes .cmp-carousel__item--swipe {
        margin-top: -212px;
    }
}

@media (max-width:1600px) {
    #home-page #middle-boxes .cmp-carousel__item--swipe {
        padding-left: 115px;
        padding-right: 115px;
    }

    #home-page .family-section {
        padding-left: 118px;
        padding-right: 100px;
    }
}

@media (min-width:1200px) and (max-width:1600px) {
    #home-page .slide-item__block {
        padding-left: 161px;
        margin-left: -32px;
    }

    #home-page .cmp-carousel-horizontal .cmp-carousel__indicators {
        left: 135px;
    }
}

@media (min-width:1199px) {
    #home-page .services__item:hover {
        margin-top: 0;
    }
}

@media (min-width:991px) and (max-width:1200px) {
    #home-page .services__item {
        height: auto;
        width: 235px;
        padding: 60px;
    }

    #home-page #middle-boxes .cmp-carousel__item--swipe {
        margin-top: -145px !important;
    }
}

#contacto #banner-center-text {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 349px;
    padding-top: 160px;
    padding-right: 385px;
    position: relative;
    z-index: 99;
}

#contacto #left-top-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    max-width: 48vw;
}

#contacto .cmp-container__backgroundImage--enabled {
    height: 500px;
    margin: -52px 0 0;
    background-position: center;
    position: relative;
}

#contacto #banner-center-text .section-title {
    text-transform: uppercase;
    color: #a71f5e;
    font-size: 80px;
    line-height: .8;
    letter-spacing: -1.6px;
    margin-bottom: -8px;
    font-family: 'BebasNeue Bold';
}

#contacto .cmp-container__backgroundImage--enabled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to right, #fff -40%, transparent);
}

#contacto .left-top-image {
    height: 498px;
}

#contacto #middle-container {
    position: relative;
}

#contacto .mid-content {
    padding-top: 140px;
    padding-bottom: 160px;
    max-width: 1920px;
    margin: 0 auto;
    padding-left: 349px;
}

#contacto .mid-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 500;
}

#contacto .mid-content p a {
    text-decoration: none;
    font-family: Roboto-Light;
    line-height: 20px;
    font-size: 16px;
    color: #000;
}

#contacto #about-banner-image {
    position: relative;
}

#contacto .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: .75rem 1rem .75rem 0;
    margin-bottom: 1rem;
    list-style: none;
    border-radius: .25rem;
    width: 100%;
    background-color: transparent;
}

#contacto .breadcrumb .breadcrumb-item {
    font-weight: 600;
    font-size: 20px;
}

#contacto .breadcrumb .breadcrumb-item a {
    color: #003d7c;
    text-decoration: none;
}

#contacto .breadcrumb .breadcrumb-item a:hover {
    color: #a71f5e;
    text-decoration: none;
}

#contacto .breadcrumb .active {
    color: #333;
}

#contacto .breadcrumb .active::before {
    display: inline-block;
    padding-right: .5rem;
    padding-left: .5rem;
    color: #6c757d;
    content: "/";
}

#contacto #right-design {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

@media (min-width:768px) and (max-width:1600px) {
    #contacto .mid-content {
        padding-left: 118px;
    }
}

@media (max-width:768px) {
    #contacto .mid-content {
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 70px !important;
        padding-bottom: 45px !important;
    }

    #contacto #banner-center-text {
        padding-bottom: 53px;
        padding-top: 114px;
    }

    #contacto .cmp-container__backgroundImage--enabled {
        height: auto;
    }

    #contacto #banner-center-text .section-title {
        font-size: 50px;
    }
}

@media (min-width:1199px) and (max-width:1600px) {
    #contacto #banner-center-text {
        padding-left: 121px;
        padding-right: 100px;
    }
}

@media (max-width:768px) {
    #contacto .mid-content h2 {
        font-size: 28px;
    }
}

@media (max-width:500px) {
    #contacto .mid-content {
        padding-left: 23px;
    }
}

@media (max-width:1199px) {
    #contacto .mid-content {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    #contacto #banner-center-text .breadcrumb {
        justify-content: center;
    }

    #contacto #about-banner-image {
        text-align: center;
    }

    #contacto .cmp-container__backgroundImage--enabled::before {
        background-image: linear-gradient(to right, #fff 46%, transparent);
    }

    #contacto #banner-center-text {
        padding-left: 0;
        padding-right: 0;
    }
}

#link-utilities .about-4 {
    position: relative;
}

#link-utilities .latest-news__bg {
    position: absolute;
    right: 0;
    bottom: 511px;
    height: 100%;
    z-index: -1;
    max-width: 800px;
}

#link-utilities .icon img {
    width: 100%;
}

#link-utilities .link-content {
    padding-left: 354px;
    padding-top: 228px;
    padding-bottom: 164px;
    max-width: 1920px;
    margin: 0 auto;
}

#link-utilities .link-row {
    display: flex;
    gap: 34px;
}

#link-utilities .col-md-3 a {
    max-width: 343px;
}

#link-utilities .col-md-4 {
    margin-top: 38px;
    max-width: 386px;
}

@media (max-width:1600px) {
    #link-utilities .link-content {
        padding-left: 118px;
    }
}

@media (max-width:991px) {
    #link-utilities .link-row {
        flex-direction: column;
    }

    #link-utilities .latest-news__bg {
        bottom: 0;
    }

    #link-utilities .link-content {
        padding-top: 150px;
    }
}

@media (max-width:768px) {
    #link-utilities .link-row {
        align-items: center;
    }

    #link-utilities .link-content {
        padding-left: 0;
    }
}

#to-complemento #middle-container {
    position: relative;
}

#to-complemento .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: .75rem 1rem .75rem 0;
    margin-bottom: 1rem;
    list-style: none;
    border-radius: .25rem;
    width: 100%;
    background-color: transparent;
}

#to-complemento .breadcrumb .breadcrumb-item {
    font-weight: 600;
    font-size: 20px;
}

#to-complemento #banner-center-text .section-title>span {
    color: #003d7c;
}

#to-complemento .breadcrumb .breadcrumb-item a {
    color: #003d7c;
    text-decoration: none;
}

#to-complemento .breadcrumb .breadcrumb-item a:hover {
    color: #a71f5e;
    text-decoration: none;
}

#to-complemento .breadcrumb .active {
    color: #333;
}

#to-complemento .breadcrumb .active::before {
    display: inline-block;
    padding-right: .5rem;
    padding-left: .5rem;
    color: #6c757d;
    content: "/";
}

#to-complemento #right-design {
    position: absolute;
    top: 449px;
    right: 0;
    z-index: -1;
}

#to-complemento .main-blog__bg {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    width: 100%;
}

#to-complemento .about-4 {
    position: relative;
    padding-top: 80px;
    padding-bottom: 140px;
}

#to-complemento .latest-news__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#to-complemento .about-4>.container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-right: 282px;
    padding-left: 321px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1920px;
}

#to-complemento .left-top-image {
    height: 498px;
}

#to-complemento .about-4>.container>.content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

#to-complemento .about-4>.container>.content>.video {
    position: relative;
    width: 50%;
    height: 100%;
}

#to-complemento .btn-video-outer {
    position: absolute;
    left: -28px;
    top: 80%;
    z-index: 2;
    width: 220px;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
    background-color: #a71f5e;
    border: 2px solid transparent;
    transition: .3s linear;
    text-decoration: none;
}

#to-complemento .btn-video-outer:hover {
    border-color: #a71f5e;
    background-color: #fff;
}

#to-complemento .btn-video-outer:hover>.btn-video {
    color: #a71f5e;
}

#to-complemento .about-4>.container>.content>.video>.img>img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    -webkit-transition: .3s linear;
    transition: transform .3s;
    width: 100%;
    height: 587px;
}

#to-complemento .about-4>.container>.content>.video>.img>img:hover {
    transform: scale(1.2);
}

#to-complemento .about-4>.container>.content>.video>.img {
    z-index: 1;
    overflow: hidden;
    position: relative;
}

#to-complemento .about-4>.container>.content>.content-right>h4 {
    text-transform: uppercase;
    font-size: 25px;
    color: #000;
    margin-top: 0;
    margin-bottom: 0;
    font-family: MYRIADPRO-REGULAR;
    letter-spacing: 2.5px;
}

#to-complemento .content-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 42px;
}

#to-complemento .content-right .section-title {
    text-transform: uppercase;
    color: #a71f5e;
    font-size: 93px;
    line-height: .8;
    letter-spacing: -1.6px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: MYRIADPRO-BOLDCOND;
}

#to-complemento .content-right .section-title span {
    color: #003d7c;
}

#to-complemento .about-4>.container>.content>.content-right>h2 {
    font-size: 26px;
    line-height: 1.2;
    color: #191715;
    font-family: MYRIADPRO-SEMIBOLD;
    margin-top: 0;
}

#to-complemento .case .container {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 10px 385px 12px 349px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1920px;
}

#to-complemento .main-blog>.container {
    position: relative;
    z-index: 10;
}

#to-complemento .case .section-title {
    text-transform: uppercase;
    color: #a71f5e;
    font-size: 67px;
    line-height: .8;
    letter-spacing: -1.6px;
    font-family: MYRIADPRO-BOLDCOND;
    margin-bottom: 0;
}

#to-complemento .main-blog>.container>h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 15px;
}

#to-complemento .case .section-title>span {
    letter-spacing: -1.6px;
    line-height: .8;
    color: #003d7c;
}

#to-complemento .case>.container .case__detail {
    width: 100%;
    margin-top: 60px;
}

#to-complemento .case__detail>.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1920px;
    margin: 30px auto;
}

#to-complemento .case__detail>.row>.col-md-3,
.case__detail>.row>.col-md-2,
.case__detail>.row>.col-md-7 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
}

#to-complemento .about-section-title h2:not(:nth-child(3)) {
    color: #000;
    font-size: 64px;
    font-family: MYRIADPRO-BOLDCOND;
    margin-top: 0;
    margin-bottom: 0;
}

#to-complemento .fa {
    display: inline-block;
    font: 14px/1 FontAwesome;
    font-size: inherit;
}

#to-complemento .btn-play:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .3);
    width: 140%;
    height: 140%;
}

#to-complemento .btn-video-outer>.btn-video {
    font-size: 20px;
    line-height: 20px;
    font-family: Roboto-Bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-transition: .3s linear;
    transition: .3s linear;
    color: #fff;
    text-transform: capitalize;
}

#to-complemento .btn-play {
    background-color: #fff;
    padding: 8px 10px 8px 11px;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 15px #fff;
    color: #a71f5e;
    margin: 0 25px 0 -15px;
}

#to-complemento .col-md-7 .lists {
    font-size: 20px;
    line-height: 34px;
}

#to-complemento .col-md-7 .lists h1 {
    font-weight: 700;
    font-family: MYRIADPRO-SEMIBOLD;
    margin-top: 0;
}

#to-complemento .bg-blue {
    height: 150px;
    width: 150px;
    background: #003d7c;
}

#to-complemento .bg-red {
    height: 150px;
    width: 150px;
    background: #972f5d;
}

#to-complemento .bg-yellow {
    height: 150px;
    width: 150px;
    background: #e5a037;
}

#to-complemento .col-md-12 h2 {
    font-size: 30px;
    font-weight: 700;
    font-family: MYRIADPRO-SEMIBOLD;
}

#to-complemento .col-md-12 {
    padding: 50px 150px 87px;
    max-width: 1920px;
    margin: 0 auto;
}

#to-complemento .col-md-12 p {
    line-height: 23px;
    font-size: 21px;
}

#to-complemento #banner-center-text .section-title {
    text-transform: uppercase;
    color: #a71f5e;
    font-size: 80px;
    line-height: .8;
    letter-spacing: -1.6px;
    margin-bottom: -8px;
    font-family: 'BebasNeue Bold';
}

#to-complemento #banner-center-text {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 349px;
    padding-top: 160px;
    padding-right: 385px;
    position: relative;
    z-index: 99;
}

#to-complemento .cmp-container__backgroundImage--enabled {
    height: 500px;
    margin: -52px 0 0;
    background-position: center;
    position: relative;
}

#to-complemento #left-top-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    max-width: 48vw;
}

#to-complemento .cmp-container__backgroundImage--enabled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to right, #fff -40%, transparent);
}

@media (min-width:768px) and (max-width:1600px) {

    #to-complemento .about-4>.container,
    #to-complemento .main-blog>.container {
        padding-left: 116px;
        padding-right: 100px;
    }
}

@media (max-width:1200px) {
    #to-complemento .section-title {
        font-size: 50px;
    }

    #to-complemento .content-right {
        padding-top: 0;
    }
}

@media (min-width:1199px) and (max-width:1600px) {
    #to-complemento #banner-center-text {
        padding-left: 121px;
        padding-right: 100px;
    }
}

@media (min-width:1700px) {
    #to-complemento .content-right .section-title {
        font-size: 107px;
    }
}

@media (max-width:768px) {
    #to-complemento .col-md-12 {
        padding-left: 50px;
        padding-right: 50px;
        text-align: center;
    }

    #to-complemento .about-4>.container>.content>.video>.img>img {
        height: auto;
    }

    #to-complemento #banner-center-text {
        padding-bottom: 53px;
        padding-top: 114px;
    }

    #to-complemento .cmp-container__backgroundImage--enabled {
        height: auto;
    }

    #to-complemento .about-4>.container {
        padding-left: 50px;
        padding-right: 50px;
    }

    #to-complemento .case .section-title {
        font-size: 50px;
        margin-top: 0;
    }

    #to-complemento .content-right .section-title {
        font-size: 50px;
    }

    #to-complemento .main-blog>.container {
        padding-left: 50px;
        padding-right: 50px;
    }

    #to-complemento .btn-video-outer {
        left: 29%;
        top: 43%;
    }

    #to-complemento #banner-center-text .section-title {
        font-size: 50px;
    }
}

@media (max-width:500px) {
    #to-complemento .btn-video-outer {
        left: 17% !important;
        top: 43% !important;
    }

    #to-complemento .case__detail>.row {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    #to-complemento .case__detail>.row>.col-md-3,
    .case__detail>.row>.col-md-2,
    .case__detail>.row>.col-md-7 {
        padding-right: 0;
    }
}

@media (min-width:1199px) {
    #to-complemento .case__detail>.row>.col-md-3 {
        width: 26%;
        text-align: right;
    }

    #to-complemento .case__detail>.row>.col-md-2 {
        width: 10%;
    }

    #to-complemento .case__detail>.row>.col-md-7 {
        width: 50%;
    }
}

@media (max-width:1199px) {
    #to-complemento .about-4 {
        padding-top: 70px;
        padding-bottom: 10px;
    }

    #to-complemento #right-design {
        top: 718px;
        z-index: 0;
    }

    #to-complemento .about-4>.container>.content>.video {
        margin-left: auto;
        margin-right: auto;
        float: none;
        margin-bottom: 60px;
    }

    #to-complemento .about-4>.container>.content>.content-right>h1.section-title,
    #to-complemento .about-4>.container>.content>.content-right>h2,
    #to-complemento .about-4>.container>.content>.content-right>h4 {
        text-align: center;
    }

    #to-complemento .about-4>.container>.content {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    #to-complemento .btn-video-outer {
        left: 37%;
        top: 43%;
    }

    #to-complemento .case__detail>.row {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        text-align: center;
        padding-left: 50px;
        padding-right: 50px;
    }

    #to-complemento .case .section-title,
    #to-complemento .main-blog>.container>h3 {
        text-align: center;
    }

    #to-complemento .about-section-title h2 {
        margin-top: 0;
        margin-bottom: 0;
    }

    #to-complemento .col-md-12 {
        margin-top: 35px;
    }

    #to-complemento .about-4>.container>.content>.video,
    #to-complemento .content-right {
        width: 100%;
        text-align: center;
    }

    #to-complemento #banner-center-text .breadcrumb {
        justify-content: center;
    }

    #to-complemento #about-banner-image {
        text-align: center;
    }

    #to-complemento .cmp-container__backgroundImage--enabled::before {
        background-image: linear-gradient(to right, #fff 46%, transparent);
    }

    #to-complemento #banner-center-text {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width:1600px) {
    #to-complemento .case__detail>.row {
        padding-right: 200px;
        padding-left: 200px;
    }
}

#shua #banner-center-text {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 349px;
    padding-top: 160px;
    padding-right: 385px;
    position: relative;
    z-index: 99;
}

#shua #left-top-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    max-width: 48vw;
}

#shua .cmp-container__backgroundImage--enabled {
    height: 500px;
    margin: -52px 0 0;
    background-position: center;
    position: relative;
}

#shua #banner-center-text .section-title {
    text-transform: uppercase;
    color: #a71f5e;
    font-size: 80px;
    line-height: .8;
    letter-spacing: -1.6px;
    margin-bottom: -8px;
    font-family: 'BebasNeue Bold';
}

#shua .breadcrumb .active::before {
    content: "/";
    display: inline-block;
    padding-right: .5rem;
    padding-left: .5rem;
    color: #6c757d;
    content: "/";
}

#shua #banner-center-text .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: .75rem 1rem .75rem 0;
    margin-bottom: 1rem;
    list-style: none;
    border-radius: .25rem;
    width: 100%;
    background-color: transparent;
}

#shua .breadcrumb .breadcrumb-item {
    font-weight: 600;
    font-size: 20px;
    font-family: Roboto-Bold;
}

#shua .breadcrumb .breadcrumb-item a {
    color: #003d7c;
    text-decoration: none;
}

#shua .breadcrumb .active {
    color: #333;
}

#shua .cmp-container__backgroundImage--enabled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to right, #fff -40%, transparent);
}

#shua .left-top-image {
    height: 498px;
}

#shua #mid-container {
    position: relative;
}

#shua .right-bottom-image {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

#shua #mid-container .text .cmp-text {
    position: static;
}

#shua #mid-container .pdfviewer {
    padding: 200px 114px 178px 152px;
    max-width: 1920px;
    margin: 0 auto;
}

#shua #mid-container .pdfviewer .cmp-pdfviewer__content {
    height: 8090px;
    width: 100%;
}

@media (min-width:350px) and (max-width:450px) {
    #shua #mid-container .pdfviewer .cmp-pdfviewer__content {
        height: 1702px !important;
    }
}

@media (min-width:451px) and (max-width:600px) {
    #shua #mid-container .pdfviewer .cmp-pdfviewer__content {
        height: 2215px !important;
    }
}

@media (min-width:601px) and (max-width:768px) {
    #shua #mid-container .pdfviewer .cmp-pdfviewer__content {
        height: 3359px !important;
    }
}

@media (min-width:769px) and (max-width:991px) {
    #shua #mid-container .pdfviewer .cmp-pdfviewer__content {
        height: 4400px !important;
    }
}

@media (min-width:992px) and (max-width:1280px) {
    #shua #mid-container .pdfviewer .cmp-pdfviewer__content {
        height: 4643px !important;
    }
}

@media (min-width:1281px) and (max-width:1400px) {
    #shua #mid-container .pdfviewer .cmp-pdfviewer__content {
        height: 5226px !important;
    }
}

@media (min-width:1401px) and (max-width:1600px) {
    #shua #mid-container .pdfviewer .cmp-pdfviewer__content {
        height: 6296px !important;
    }
}

@media (max-width:768px) {
    #shua #banner-center-text .section-title {
        font-size: 50px;
    }

    #shua #banner-center-text {
        padding-bottom: 53px;
        padding-top: 114px;
    }

    #shua .cmp-container__backgroundImage--enabled {
        height: auto;
    }
}

@media (max-width:1199px) {
    #shua #mid-container .pdfviewer {
        padding-left: 0;
        padding-right: 0;
        padding-top: 50px;
    }

    #shua #banner-center-text .breadcrumb {
        justify-content: center;
    }

    #shua #about-banner-image {
        text-align: center;
    }

    #shua .cmp-container__backgroundImage--enabled::before {
        background-image: linear-gradient(to right, #fff 46%, transparent);
    }

    #shua #banner-center-text {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width:1199px) and (max-width:1600px) {
    #shua #banner-center-text {
        padding-left: 121px;
        padding-right: 100px;
    }
}

#hpn #banner-center-text {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 349px;
    padding-top: 160px;
    padding-right: 385px;
    position: relative;
    z-index: 99;
}

#hpn .right-bottom-image {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

#hpn #mid-container .text .cmp-text {
    position: static;
}

#hpn #mid-container {
    position: relative;
}

#hpn #mid-container .pdfviewer {
    padding: 50px 114px 178px 152px;
    max-width: 1920px;
    margin: 0 auto;
}

#hpn #mid-container .pdfviewer .cmp-pdfviewer__content {
    height: 10932px;
    width: 100%;
}

#hpn #left-top-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    max-width: 48vw;
}

#hpn .cmp-container__backgroundImage--enabled {
    height: 500px;
    margin: -52px 0 0;
    background-position: center;
    position: relative;
}

#hpn #banner-center-text .section-title {
    text-transform: uppercase;
    color: #a71f5e;
    font-size: 80px;
    line-height: .8;
    letter-spacing: -1.6px;
    margin-bottom: -8px;
    font-family: 'BebasNeue Bold';
}

#hpn .breadcrumb .active::before {
    content: "/";
    display: inline-block;
    padding-right: .5rem;
    padding-left: .5rem;
    color: #6c757d;
    content: "/";
}

#hpn #banner-center-text .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: .75rem 1rem .75rem 0;
    margin-bottom: 1rem;
    list-style: none;
    border-radius: .25rem;
    width: 100%;
    background-color: transparent;
}

#hpn .breadcrumb .breadcrumb-item {
    font-weight: 600;
    font-size: 20px;
    font-family: Roboto-Bold;
}

#hpn .breadcrumb .breadcrumb-item a {
    color: #003d7c;
    text-decoration: none;
}

#hpn .breadcrumb .active {
    color: #333;
}

#hpn .cmp-container__backgroundImage--enabled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to right, #fff -40%, transparent);
}

#hpn .left-top-image {
    height: 498px;
}

@media (min-width:350px) and (max-width:450px) {
    #hpn #mid-container .pdfviewer .cmp-pdfviewer__content {
        height: 2188px !important;
    }
}

@media (min-width:451px) and (max-width:600px) {
    #hpn #mid-container .pdfviewer .cmp-pdfviewer__content {
        height: 2798px !important;
    }
}

@media (min-width:601px) and (max-width:768px) {
    #hpn #mid-container .pdfviewer .cmp-pdfviewer__content {
        height: 3717px !important;
    }
}

@media (min-width:769px) and (max-width:991px) {
    #hpn #mid-container .pdfviewer .cmp-pdfviewer__content {
        height: 5680px !important;
    }
}

@media (min-width:992px) and (max-width:1280px) {
    #hpn #mid-container .pdfviewer .cmp-pdfviewer__content {
        height: 7116px !important;
    }
}

@media (min-width:1281px) and (max-width:1400px) {
    #hpn #mid-container .pdfviewer .cmp-pdfviewer__content {
        height: 7000px !important;
    }
}

@media (min-width:1401px) and (max-width:1600px) {
    #hpn #mid-container .pdfviewer .cmp-pdfviewer__content {
        height: 8296px !important;
    }
}

@media (max-width:768px) {
    #hpn #banner-center-text .section-title {
        font-size: 50px;
    }

    #hpn #banner-center-text {
        padding-bottom: 53px;
        padding-top: 114px;
    }

    #hpn .cmp-container__backgroundImage--enabled {
        height: auto;
    }
}

@media (min-width:1199px) and (max-width:1600px) {
    #hpn #banner-center-text {
        padding-left: 121px;
        padding-right: 100px;
    }
}

@media (max-width:1199px) {
    #hpn #mid-container .pdfviewer {
        padding-left: 0;
        padding-right: 0;
        padding-top: 50px;
    }

    #hpn #banner-center-text .breadcrumb {
        justify-content: center;
    }

    #hpn #about-banner-image {
        text-align: center;
    }

    #hpn .cmp-container__backgroundImage--enabled::before {
        background-image: linear-gradient(to right, #fff 46%, transparent);
    }

    #hpn #banner-center-text {
        padding-left: 0;
        padding-right: 0;
    }
}

#ramiro #banner-center-text {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 349px;
    padding-top: 160px;
    padding-right: 385px;
    position: relative;
    z-index: 99;
}

#ramiro #left-top-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

#ramiro .cmp-container__backgroundImage--enabled {
    height: 500px;
    margin: -52px 0 0;
    background-position: center;
    position: relative;
}

#ramiro #banner-center-text .section-title {
    text-transform: uppercase;
    color: #a71f5e;
    font-size: 80px;
    line-height: .8;
    letter-spacing: -1.6px;
    margin-bottom: -8px;
    font-family: 'BebasNeue Bold';
}

#ramiro .breadcrumb .active::before {
    content: "/";
    display: inline-block;
    padding-right: .5rem;
    padding-left: .5rem;
    color: #6c757d;
    content: "/";
}

#ramiro #banner-center-text .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: .75rem 1rem .75rem 0;
    margin-bottom: 1rem;
    list-style: none;
    border-radius: .25rem;
    width: 100%;
    background-color: transparent;
}

#ramiro .breadcrumb .breadcrumb-item {
    font-weight: 600;
    font-size: 20px;
    font-family: Roboto-Bold;
}

#ramiro .breadcrumb .breadcrumb-item a {
    color: #003d7c;
    text-decoration: none;
}

#ramiro .breadcrumb .active {
    color: #333;
}

#ramiro .cmp-container__backgroundImage--enabled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to right, #fff -40%, transparent);
}

#ramiro .left-top-image {
    height: 498px;
    max-width: 48vw;
}

#ramiro .right-bottom-image {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

#ramiro #mid-container {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 240px 385px 100px 349px;
    max-width: 1920px;
    margin: -700px auto 0;
}

#ramiro #mid-container .cmp-text {
    position: static;
}

#ramiro .video-heading {
    font-size: 32px;
    font-family: Roboto-Light;
    color: #212529;
    font-weight: 700;
    padding-bottom: 0;
    margin-top: 60px;
}

#ramiro .video-heading-1 {
    font-size: 32px;
    font-family: Roboto-Light;
    color: #212529;
    font-weight: 700;
    padding-left: 16px;
    position: absolute;
    top: 205px;
    left: 349px;
}

#ramiro #mid-container .cmp-video__player {
    width: 800px;
    height: 500px !important;
}

.playerPoster.fill-width {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

#error-section {
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#error-section h1 {
    font-family: 'BebasNeue Bold';
    color: #870051;
    font-size: 5rem;
    margin-bottom: 1rem;
}

#error-section p {
    font-size: 20px;
    margin-bottom: 3rem;
    font-family: Roboto-Light;
}

#error-section .cta-btn {
    background-color: #992d5d;
    padding: 15px 40px;
    color: #fff;
    border-radius: 63px;
    font-size: 22px;
    line-height: 28px;
    display: inline-block;
    font-family: Roboto-Bold;
    text-decoration: none;
}

#error-section .cta-btn:hover {
    text-decoration: none;
}

@media (max-width:537px) {
    #ramiro #mid-container .cmp-video__player {
        width: 257px !important;
        height: 179px !important;
    }

    #ramiro #mid-container .video .cmp-video__content {
        text-align: center !important;
    }

    #ramiro #mid-container {
        margin-top: -286px !important;
    }
}

@media (max-width:768px) {
    #ramiro #banner-center-text .section-title {
        font-size: 50px;
    }

    #ramiro .cmp-container__backgroundImage--enabled {
        height: auto;
    }

    #ramiro #banner-center-text {
        padding-bottom: 53px;
        padding-top: 114px;
    }

    #ramiro .video-heading,
    #ramiro .video-heading-1 {
        font-size: 18px;
    }

    #ramiro #mid-container {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    #ramiro .video-heading-1 {
        left: 50px;
        top: 87px;
    }

    #error-section h1 {
        font-size: 3rem;
    }

    #error-section p {
        line-height: 1.5;
    }
}

@media (min-width:768px) and (max-width:1199px) {
    #ramiro .video-heading-1 {
        left: 305px;
        top: 72px;
    }
}

@media (min-width:1199px) and (max-width:1600px) {
    #ramiro #banner-center-text {
        padding-left: 121px;
        padding-right: 100px;
    }

    #ramiro #mid-container {
        padding-left: 100px;
        padding-right: 100px;
    }

    #ramiro .video-heading-1 {
        left: 100px;
    }
}

@media (min-width:537px) and (max-width:1199px) {
    #ramiro #mid-container .cmp-video__player {
        width: 500px;
        height: 316px !important;
    }
}

@media (max-width:1199px) {
    #ramiro #banner-center-text .breadcrumb {
        justify-content: center;
    }

    #ramiro #about-banner-image {
        text-align: center;
    }

    #ramiro #banner-center-text {
        padding-left: 0;
        padding-right: 0;
    }

    #ramiro #mid-container {
        align-items: center;
        padding-left: 100px;
        padding-right: 100px;
        padding-top: 100px;
        margin-top: -424px;
    }

    #ramiro #mid-container .video {
        text-align: -webkit-center;
    }

    #ramiro #mid-container .video .cmp-video__content {
        text-align: left;
    }

    #ramiro .cmp-container__backgroundImage--enabled::before {
        background-image: linear-gradient(to right, #fff 46%, transparent);
    }
}

@media (min-width:1199px) {

    #contacto #banner-center-text,
    #to-complemento #banner-center-text {
        padding-top: 220px;
    }

    #shua #banner-center-text {
        padding-top: 177px;
    }

    #hpn #banner-center-text {
        padding-top: 200px;
    }
}

.cmp-carousel__action--next.clicked,
.cmp-carousel__action--previous.clicked {
    width: 47px;
    background-color: #a71f5e;
    transition: .3s;
}

.success-msg-form {
    font-size: 35px;
    font-family: 'BebasNeue Bold';
    color: #830051;
    text-align: center;
    font-weight: 700;
}

@media (max-width:500px) {
    .success-msg-form {
        font-size: 24px;
    }
}

@media (max-width:1200px) {

    #contacto .cmp-container__backgroundImage--enabled,
    #hpn .cmp-container__backgroundImage--enabled,
    #shua .cmp-container__backgroundImage--enabled,
    #to-complemento .cmp-container__backgroundImage--enabled {
        margin-top: 0 !important;
    }
}

.modal-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 46, 127, .7);
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(4px);
}

.modal-container.show {
    display: flex;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 1200px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .3);
}

.modal-flex {
    display: flex;
    width: 100%;
}

.modal-left {
    width: 45%;
    background-color: #f7f9fc;
    display: flex;
    align-items: flex-end;
}

.modal-left img {
    width: 100%;
    display: block;
}

.modal-right {
    width: 55%;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.m-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

.m-title {
    color: #f29100;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.m-flag {
    width: 100px;
    margin-bottom: 20px;
}

.m-btn {
    background-color: #e94e1b !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    min-height: 50px;
    border-radius: 30px;
    text-decoration: none !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    pointer-events: none;
}

.m-mail {
    color: #00467f;
    font-weight: 700;
    font-style: italic;
}

.close-x {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 26px;
    font-weight: 700;
    color: #00467f;
    cursor: pointer;
    z-index: 10;
}

.modal-legal {
    width: 95% !important;
    max-width: 1000px !important;
    padding: 50px 40px !important;
    border-radius: 12px;
    background: #fff;
    position: relative;
}

.modal-legal-body {
    text-align: justify;
    max-height: 75vh;
    overflow-y: auto;
    padding-right: 20px;
}

.legal-text-content {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.modal-legal-body .legal-text-content ol,
.modal-legal-body .legal-text-content ul {
    margin-left: 3rem;
}

@media (max-width:1024px) {
    .modal-legal {
        max-width: 90% !important;
        padding: 40px 20px !important;
    }

    .legal-text-content {
        font-size: 14px;
    }
}

@media (max-width:768px) {
    .modal-legal {
        width: 95% !important;
        height: auto;
    }

    .modal-legal-body {
        max-height: 60vh;
    }
}

@media screen and (min-width: 320px) and (max-width: 767px) {

    #info-detail-section,
    #support-detail-section {
        height: auto;
    }
}










/* Ocultar el header original de AEM en mobile */
@media (max-width: 1023px) {

    .header-main,
    .custom-navigation-section {
        display: none !important;
    }
}

/* Estilos para el nuevo menú inyectado por JS */
.mobile-js-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-js-logo img {
    height: 40px;
}

.mobile-js-toggler {
    font-size: 24px;
    background: none;
    border: none;
    color: #003399;
    cursor: pointer;
}

/* El panel que se desliza */
.mobile-js-menu-panel {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    transition: 0.3s;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
}

.mobile-js-menu-panel.open {
    left: 0;
}

.mobile-js-link {
    text-decoration: none;
    color: #003399;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.mobile-js-btn {
    background: #0000FF;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}


/* Estilos para el Botón Flotante Circular */
#floating-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #830051;
    /* Color AstraZeneca */
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#floating-btn img {
    max-width: 100%;
    height: auto;
    width: 40px;
}

/* Efecto de pulsación al tocar */
#floating-btn:active {
    transform: scale(0.85);
}

/* --- LÓGICA DE VISIBILIDAD --- */

/* Ocultar en Desktop por defecto */
.mobile-only-btn {
    display: none !important;
}

/* Mostrar solo en pantallas móviles (menores a 768px) */
@media (max-width: 768px) {
    .mobile-only-btn {
        display: flex !important;
    }
}