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

body {
    font-family: "Londrina Solid", Arial, sans-serif;
}

.navbar {
    padding-left: 47px;
    padding-right: 19px;
    padding-top: 19px;
    z-index: 2;
    width: 100%;
    position: absolute;
}

.navbar-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    /* position: relative; */
    padding-right: 36px;
}

.logo-containaer img {
    width: 172px;
    height: 165px;
}

@media (max-width: 768px) {
    .navbar {
        /* padding: 19px; */
        padding: 0;
        padding-left: 25px;
        position: relative;
    }

    .navbar-container { 
        padding: 0;
    }

    .logo-containaer  {
        margin-top: 24px;
    }

    .logo-containaer img {
        width: 69px;
        height: 69px;
    }
}

.menu-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 11px;
    align-items: center;
}

@media (max-width: 768px) {
    .menu-container {
        position: absolute;
        top: 0;
        right: 0;
        background-color: #F04247;
        z-index: 9999;
        width: 92px;
        height: 85px;
        border-bottom-left-radius: 30.91px;
    }
}

.menu-container .menu-label {
    font-family: Londrina Solid;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

.menu-hamburguer {
    width: 74px;
    height: 74px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    z-index: 9999;
    position: relative;
}

@media (max-width: 768px) {
    .menu-hamburguer {
        width: 42px;
        height: 42px;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 10000;
    }

    .menu-container .menu-hamburguer span {
        width: 20px;
    height: 3px;
    }
}

.menu-hamburguer:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}



.menu-hamburguer span {
    width: 17px;
    height: 3px;
    background-color: #F25C2D;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.menu-container .menu-hamburguer.active{
    width: 42px;
    height: 42px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.menu-container .menu-hamburguer.active span {
    margin-right: 2px;
}

.menu-hamburguer.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 2px);
}

.menu-hamburguer.active span:nth-child(2) {
    opacity: 0;
}

.menu-hamburguer.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -5.5px);
}

.menu-hamburguer-opened-inside-menu-container {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    z-index: 10000;
}

.menu-hamburguer-opened-inside-menu-container span {
    width: 20px;
    height: 3px;
    background-color: #F25C2D;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu.active .menu-hamburguer-opened-inside-menu-container span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 2px);
}

.mobile-menu.active .menu-hamburguer-opened-inside-menu-container span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active .menu-hamburguer-opened-inside-menu-container span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -5.5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -461px;
    width: 461px;
    height: 100vh;
    background-color: #F04247;
    z-index: 999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 89px;
}

.mobile-menu.active {
    right: 0;
}

body.menu-active .menu-container .menu-label,
body.menu-active .logo-containaer {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu nav ul {
    list-style: none;
    text-align: center;
}

.mobile-menu nav ul li {
    margin: 21px 0;
}

.mobile-menu nav ul li a {
    font-family: Londrina Solid;
    font-weight: 400;
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu nav ul li a:hover {
    color: #FFE4E6;
}

.mobile-menu-social {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    margin-top: 196px;
}

.mobile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.mobile-social-link:hover {
    transform: scale(1.1);
}

.mobile-social-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.mobile-social-link:hover .mobile-social-icon {
    filter: brightness(0) invert(0.9);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .mobile-menu {
        width: 100%;
        right: -100%;
        padding-top: 89px;
    }
    
    .menu-container .menu-label {
        display: none;
    }
    
    .mobile-menu nav ul li a {
        font-size: 28px;
    }
    
    .mobile-menu nav ul li {
        margin: 21px 0;
    }
    
    .mobile-social-icon {
        width: 36px;
        height: 36px;
    }
    
    .mobile-menu-social {
        gap: 20px;
        margin-top: 150px;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        right: -100%;
        padding-top: 89px;
    }
    
    .mobile-menu nav ul li a {
        font-size: 20px;
    }
    
    .mobile-menu nav ul li {
        margin: 21px 0;
    }
    
    .mobile-social-icon {
        width: 32px;
        height: 32px;
    }
    
    .mobile-menu-social {
        gap: 16px;
        margin-top: 120px;
    }
}


.section-noticias {
    width: 100%;
    margin-top: 120px;
    background-color: #F8F4DF;
    padding: 80px 0;
}

.noticias-container {
    max-width: 1216px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.noticias-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 64px;
}

@media (max-width: 768px){
    .noticias-header {
    }
}

.noticias-label {
    font-family: Londrina Solid;
    font-weight: 300;
    font-style: Light;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    background: linear-gradient(168.33deg, #F04247 -2.94%, #782B90 34.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px){
    .noticias-label {
        width: 100%;
        text-align: center;
        font-size: 16px;
    }
}

.noticias-title {
    font-family: Londrina Solid;
    font-weight: 400;
    font-style: Regular;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #071F2C;
    margin-top: 16px;
}

@media (max-width: 768px){
    .noticias-title {
        width: 100%;
        text-align: center;
        font-size: 36px;
    }
}

.noticias-header-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    align-self: flex-end;
}

@media (max-width: 768px) {
    .noticias-header {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 16px;
    }

    .noticias-header-text {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-self: center;
        justify-content: center;
    }

    .noticias-header-link {
        align-self: flex-start;
        display: none;
    }

    .noticias-title {
        font-size: 48px;
    }
}

.noticias-link-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.noticias-link {
    font-family: Londrina Solid;
    font-weight: 400;
    font-style: Regular;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #F25D2B;
    display: flex;
    align-items: center;
    gap: 19px;
    transition: color 0.3s ease;
    align-self: flex-end;
    text-decoration: underline;
}

.noticias-link:hover {
    color: #D4461F;
}

.noticias-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-start;
}

@media (max-width: 768px){
    .noticias-content {
        gap: 16px;
    }
}

.noticia-main {
    display: flex;
    flex-direction: column;
    max-width: 590px;
}

@media (max-width: 768px){
    .noticias-content .noticia-main {
        flex-direction: row;
    }
}

.noticia-main-image {
    width: 100%;
    height: 337px;
    object-fit: cover;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

@media (max-width: 768px){
    .noticia-main {
        height: auto;
    }
    
    .noticia-main-image {
        width: 147.48951721191406px;
        height: 119.34265899658203px;
        border-radius: 13.51px;
    }
}

.noticia-main-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
    min-height: 215px;
    background-color: #fff;
    padding: 47px 40px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

@media (max-width: 768px){
    .noticia-main-content {
        background-color: transparent;
        padding: 0;
        margin-left: 16px;
        min-height: auto;
        border-radius: 0;
        max-width: 157.62237548828125px;
    }
}

.noticia-main-text {
    max-width:388px;
}

.noticia-main-content .noticia-title {
    font-family: Londrina Solid;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #071F2C;
    margin: 0;
}

@media (max-width: 768px){
    .noticia-main-content .noticia-main-text .noticia-title {
        font-size: 18px;
    }
}

.noticia-main-content .noticia-text {
    font-family: inter;
    font-weight: 300;
    font-style: Light;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 1%;
    text-transform: uppercase;
    color: #52636C;
    margin: 0;
    margin-top: 16px;
}

@media (max-width: 768px){
    .noticia-main-content .noticia-main-text .noticia-text {
        font-size: 10px;
    }
}

.noticia-main-content .noticia-link {
    font-size: 24px;
    color: #F25D2B;
    text-decoration: none;
    align-self: flex-end;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.noticia-main-content .noticia-link-mobile {
    display: none;
}

@media (max-width: 768px){
    .noticia-main-content .noticia-link {
        display: none;
    }

    .noticia-main-content .noticia-link-mobile {
        display: flex;
        margin-top: 16px;
    }
}





.noticias-secundarias {
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: 100%;
    justify-content: space-between;
}

@media (max-width: 768px){
    .noticias-secundarias .noticia-item {
        flex-direction: row;
    }
}

@media (max-width: 768px){
    .noticias-secundarias .noticia-item .noticia-image {
        width: 147.48951721191406px;
        height: 119.34265899658203px;
        border-radius: 13.51px;
    }
}

@media (max-width: 768px){
    .noticias-secundarias .noticia-item .noticia-content {
        background-color: transparent;
        padding: 0;
        max-width: 157.62237548828125px;
    }
}

@media (max-width: 768px){
    .noticia-item .noticia-content .noticia-title {
        font-size: 18px;
    }
}

@media (max-width: 768px){
    .noticia-item .noticia-content .noticia-text {
        font-size: 10px;
    }
}

@media (max-width: 768px){
    .noticia-item .noticia-content .noticia-link {
        display: none;
    }

    .noticia-item .noticia-content .noticia-link-mobile {
        display: flex;
        margin-top: 16px;
    }
}

.noticia-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

@media (max-width: 768px){
    .noticia-item {
        gap: 16px;
    }
}

.noticia-item .noticia-image {
    width: 262px;
    max-height: 212px;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
}

.noticia-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 280px;
}

.noticia-divider, .noticia-divider-mobile {
    border: 1px solid #00000033;
    height: 0;
}

.noticia-divider-mobile {
    display: none;
}

@media (max-width: 768px){
    .noticia-divider-mobile {
        display: flex;
    }
}

.noticia-content .noticia-title {
    font-family: Londrina Solid;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #071F2C;
    margin: 0;
}

.noticia-content .noticia-text {
    font-family: Londrina Solid;
    font-weight: 300;
    font-style: Light;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 1%;
    text-transform: uppercase;
    color: #52636C;
    margin: 0;
    max-width: 200px;
}

.noticia-content .noticia-link {
    font-size: 20px;
    color: #F25D2B;
    text-decoration: none;
    align-self: flex-end;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.noticia-content .noticia-link:hover {
    background-color: #F25D2B;
    color: white;
}

@media (max-width: 768px) {
    .section-noticias {
        margin-top: 80px;
        padding: 60px 0;
    }

    .noticias-container {
        padding: 0 16px;
    }

    .noticias-header {
        margin-bottom: 48px;
    }

    .noticias-title {
        font-size: 48px;
    }

    .noticias-link {
        font-size: 24px;
    }

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

    .noticia-main-content .noticia-title {
        font-size: 28px;
    }

    .noticia-main-content .noticia-text {
        font-size: 16px;
    }

    .noticia-item {
        flex-direction: column;
        gap: 16px;
        
    }

    .noticia-item .noticia-image {
        max-width: 100%;
        width: 100%;
        height: 200px;
    }

    .noticia-item  .noticia-content {
        max-width: 100%;
        width: 100%;
    }

    .noticia-content .noticia-title {
        font-size: 20px;
        max-width: 100%;
    }

    .noticia-content .noticia-text {
        font-size: 14px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .section-noticias {
        margin-top: 60px;
        padding: 40px 0;
    }

    .noticias-container {
        padding: 0 16px;
    }

    .noticias-title {
        font-size: 36px;
    }

    .noticias-link {
        font-size: 20px;
    }

    .noticias-content {
        gap: 32px;
    }

    .noticia-main-content .noticia-title {
        font-size: 24px;
    }

    .noticia-content .noticia-title {
        font-size: 18px;
    }
}



.sbpc-footer {
    width: 100%;
    background-color: #fff;
    padding-top: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sbpc-footer-container {
    max-width: 1216px;
    width: 100%;
}

.sbpc-footer-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 64px;
}

.sbpc-footer-hero-text {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

@media (max-width: 768px){
    .sbpc-footer-hero-text {
        flex-direction: column-reverse;
    }
}

.sbpc-footer-title {
    font-family: Londrina Solid;
    font-weight: 400;
    font-style: Regular;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    background: linear-gradient(111.33deg, #F04247 11.06%, #782B90 73.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 600px;
    max-width: 338px;
}

.sbpc-footer-icons {
    display: flex;
    align-items: center;
    margin-left: -50px;
}

.sbpc-footer-illustration {
    height: 170px;
    object-fit: scale-down;
    margin-top: 20px;
}

.sbpc-footer-illustration-icon {
    margin-top: 50px;
}

.sbpc-footer-icon {
    width: 48px;
    height: 48px;
}

.sbpc-footer-logo-img {
    width: 249px;
    height: 240px;
    object-fit: scale-down;
}

.sbpc-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 64px;
}

.sbpc-footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-link:hover  .social-icon{
    opacity: 0.8;
}

.social-icon {
    width: 37px;
    height: 37px;
}

.sbpc-footer-nav {
    display: flex;
    gap: 87px;
    align-items: center;
}

.sbpc-footer-nav-link {
    font-family: Londrina Solid;
    font-weight: 400;
    font-style: Regular;
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #52636C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sbpc-footer-nav-link:hover {
    color: #F04247;
}

.sbpc-footer-sponsors {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    justify-content: space-between;
}

/* Medium desktop responsive */
@media (max-width: 1200px) and (min-width: 1025px) {
    .sbpc-footer-sponsors {
        gap: 32px;
    }

    .sponsors-logos {
        gap: 28px;
    }

    .sponsor-logo {
        max-width: 180px;
        max-height: 95px;
        width: 100%;
        height: 95px;
    }
}

.sponsors-text {
    font-family: Londrina Solid;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #52636C;
}

.sponsors-logos {
    display: flex;
    gap: 32px;
    align-items: center;
}

.sponsor-logo {
    max-width: 200px;
    max-height: 100px;
    width: 200px;
    height: 100px;
    border-radius: 8.38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo img {
    max-width: 200px;
    max-height: 100px;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.sponsor-placeholder {
    font-family: Londrina Solid;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #52636C;
}

.sbpc-footer-bottom {
    border-top: 1px solid #BABABA;
    padding-top: 24px;
    padding-bottom: 111px;
}

@media (max-width: 768px){
    .sbpc-footer-bottom {
        padding-bottom: 23px;
        border:none;
        padding-top: 0;
    }
}

.sbpc-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sbpc-footer-sbpc {
}

.sbpc-logo {
    object-fit: scale-down;
}


.credit-text {
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 2%;
    text-transform: uppercase;
    color: #52636C;
    text-decoration: none;

}

/* Tablet responsive styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .sbpc-footer-sponsors {
        gap: 32px;
        margin-bottom: 70px;
    }

    .sponsors-text {
        font-size: 22px;
    }

    .sponsors-logos {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .sponsor-logo {
        width: 180px;
        height: 90px;
    }

    .sponsor-logo img {
        max-width: 180px;
        max-height: 90px;
        width: 100%;
        height: 100%;
        object-fit: scale-down;
    }

    .sponsor-placeholder {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .sbpc-footer {
        padding: 60px 0 0 0;
        margin-top: 80px;
    }

    .sbpc-footer-container {
        padding: 0 16px;
    }

    .sbpc-footer-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
        margin-bottom: 60px;
    }

    .sbpc-footer-title {
        font-size: 48px;
        max-width: 100%;
    }

    .sbpc-footer-icons {
        justify-content: center;
    }

    .sbpc-footer-logo-img {
        width: 250px;
    }

    .sbpc-footer-content {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }

    .sbpc-footer-nav {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .sbpc-footer-nav-link {
        font-size: 24px;
    }

    .sbpc-footer-sponsors {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 60px;
        padding-bottom: 60px;
        text-align: center;
    }

    .sponsors-text {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .sponsors-logos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 16px;
        justify-items: center;
        width: 100%;
    }

    .sponsor-logo {
        width: 140px;
        height: 75px;
    }

    .sponsor-placeholder {
        font-size: 15px;
    }

    .sbpc-footer-bottom-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
       
    }

    .sbpc-footer-sbpc {
        flex-direction: column;
        gap: 16px;
    }

    .sbpc-desc-text {
        max-width: 100%;
        text-align: center;
    }
}

/* Large mobile devices */
@media (max-width: 640px) and (min-width: 481px) {
    .sbpc-footer-sponsors {
        gap: 18px;
        margin-bottom: 50px;
        padding-bottom: 50px;
    }

    .sponsors-text {
        font-size: 19px;
    }

    .sponsors-logos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
        gap: 14px;
        justify-items: center;
        width: 100%;
    }

    .sponsor-logo {
        max-width: 125px;
        max-height: 65px;
        width: 125px;
        height: 65px;
    }

    .sponsor-placeholder {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .sbpc-footer {
        padding: 40px 0 0 0;
        margin-top:0;
    }

    .sbpc-footer-hero {
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .sbpc-footer-icons {
        gap: 16px;
        max-width: 100%;
        margin:0;
    }

    .sbpc-footer-icon {
        width: 32px;
        height: 32px;
    }

    .sbpc-footer-logo-img {
        width: 151px;
        height: 145.5037384033203px;
        margin-top: 100px;
    }

    .sbpc-footer-content {
        margin-top: 98px;
        margin-bottom: 40px;
    }

    .sbpc-footer-social {
        gap: 16px;
    }

    

    .sbpc-footer-nav-link {
        font-size: 22px;
        max-width: 105px;
        width: 100%;
        text-align: left;
    }

    .sbpc-footer-sponsors {
        margin-bottom: 40px;
        padding-bottom: 40px;
        gap: 16px;
        margin-top: 100px;
    }

    .sponsors-text {
        font-size: 22px;
    }

    .sponsors-logos {
        display: grid;
        grid-template-columns: 100%;
        gap: 12px;
        justify-items: center;
        width: 100%;
        max-width: 100%;
        margin-top: 56px;
    }

    .sponsor-logo {
        max-width: 200px;
        max-height: 100px;
        width: 200px;
        height: 100px;
    }

    .sponsor-placeholder {
        font-size: 12px;
    }

    .sbpc-logo {
        width: 132px;
        height: 49px;
        
    }

    .sbpc-text {
        font-size: 18px;
    }

    .sbpc-desc-text {
        font-size: 14px;
    }

    .credit-text {
        font-size: 14px;
    }
}

/* Mobile Hero Image Section - Global */
.mobile-hero-image-section {
    display: none;
    width: 100%;
    margin-top: 54px;
    position: relative;
}

.mobile-hero-container {
    position: relative;
    width: 100%;
    height: 528px;
    overflow: hidden;
}

.mobile-hero-main-image {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 300px;
    width: 370px;
    height: 528px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
}

.mobile-hero-image-section {

}

.mobile-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.mobile-hero-illustration {
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    height: 528px;
    z-index: 1;
    overflow: hidden;
}

.mobile-hero-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .mobile-hero-image-section {
        display: none;
        padding-left: 20px;
    }
}

@media (max-width: 480px){
     .mobile-hero-home-image-section {
        display: block;
    }
}

@media (max-width: 365px) {
    

    .mobile-hero-main-image {
        max-width: 250px;
    }

    .mobile-hero-illustration {
        width: 60px;
        right: -3px;
    }

    .mobile-hero-home-image-section {
        display: block;
    }
    
    .mobile-hero-main-image {
        width: 100%;
    }
}

/* Responsive padding for containers with max-width 1216px */
@media (max-width: 1216px) {
    .noticias-container,
    .sbpc-footer-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.mapplic-container .mapplic-overlay .mapplic-tooltip.mapplic-popup .mapplic-popup-content {
                background: red;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            width: 400px;
            max-width: 90vw;
            position: relative;
            overflow: hidden;
        }

        .mapplic-popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            cursor: pointer;
            color: #666;
            z-index: 10;
            padding: 5px;
            border-radius: 50%;
            transition: background-color 0.2s;
        }

        .mapplic-popup-close:hover {
            background-color: #f5f5f5;
        }

        .mapplic-popup-title {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px 20px 15px 20px;
            text-align: center;
        }

        .mapplic-popup-title h4 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .mapplic-popup-title h5 {
            font-size: 14px;
            opacity: 0.9;
            font-weight: normal;
        }

        .mapplic-popup-body {
            padding: 25px 20px;
        }

        .school-group {
            background: #fafafa;
            border: 2px solid #e8e8e8;
            border-radius: 8px;
            padding: 18px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .school-group:hover {
            border-color: #d0d0d0;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .school-group::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
        }

        .school-group:last-child {
            margin-bottom: 0;
        }

        .program-name {
            color: #e74c3c;
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
            padding-left: 15px;
        }

        .school-name {
            color: #2c3e50;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 6px;
            line-height: 1.3;
            padding-left: 15px;
        }

        .location {
            color: #7f8c8d;
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            padding-left: 15px;
        }

        /* Responsive design */
        @media (max-width: 480px) {
            .mapplic-popup-content {
                width: 95vw;
                margin: 10px;
            }
            
            .mapplic-popup-title h4 {
                font-size: 20px;
            }
            
            .school-name {
                font-size: 14px;
            }
            
            .program-name {
                font-size: 11px;
            }
        }