/* Fonts e Geral */

@font-face {
        font-family: 'Satoshi-Light';
        src: 
                 url('media/fonts/Satoshi-Light.woff') format('woff'),
                 url('/media/fonts/Satoshi-Light.ttf') format('truetype');
        font-weight: 300;
        font-display: swap;
        font-style: normal;
    }
    @font-face {
        font-family: 'Satoshi-LightItalic';
        src: 
                 url('/media/fonts/Satoshi-LightItalic.woff') format('woff'),
                 url('/media/fonts/Satoshi-LightItalic.ttf') format('truetype');
        font-weight: 300;
        font-display: swap;
        font-style: italic;
    }
    @font-face {
        font-family: 'Satoshi-Regular';
        src:
                 url('/media/fonts/Satoshi-Regular.woff') format('woff'),
                 url('/media/fonts/Satoshi-Regular.ttf') format('truetype');
        font-weight: 400;
        font-display: swap;
        font-style: normal;
    }
    @font-face {
        font-family: 'Satoshi-Italic';
        src: 
                 url('/media/fonts/Satoshi-Italic.woff') format('woff'),
                 url('/media/fonts/Satoshi-Italic.ttf') format('truetype');
        font-weight: 400;
        font-display: swap;
        font-style: italic;
    }
    @font-face {
        font-family: 'Satoshi-Medium';
        src: 
                 url('/media/fonts/Satoshi-Medium.woff') format('woff'),
                 url('/media/fonts/Satoshi-Medium.ttf') format('truetype');
        font-weight: 500;
        font-display: swap;
        font-style: normal;
    }
    @font-face {
        font-family: 'Satoshi-MediumItalic';
        src: 
                 url('/media/fonts/Satoshi-MediumItalic.woff') format('woff'),
                 url('/media/fonts/Satoshi-MediumItalic.ttf') format('truetype');
        font-weight: 500;
        font-display: swap;
        font-style: italic;
    }
    @font-face {
        font-family: 'Satoshi-Bold';
        src: 
                 url('/media/fonts/Satoshi-Bold.woff') format('woff'),
                 url('/media/fonts/Satoshi-Bold.ttf') format('truetype');
        font-weight: 700;
        font-display: swap;
        font-style: normal;
    }
    @font-face {
        font-family: 'Satoshi-BoldItalic';
        src: 
                 url('/media/fonts/Satoshi-BoldItalic.woff') format('woff'),
                 url('/media/fonts/Satoshi-BoldItalic.ttf') format('truetype');
        font-weight: 700;
        font-display: swap;
        font-style: italic;
    }
    @font-face {
        font-family: 'Satoshi-Black';
        src: 
                 url('/media/fonts/Satoshi-Black.woff') format('woff'),
                 url('/media/fonts/Satoshi-Black.ttf') format('truetype');
        font-weight: 900;
        font-display: swap;
        font-style: normal;
    }
    @font-face {
        font-family: 'Satoshi-BlackItalic';
        src: 
                 url('/media/fonts/Satoshi-BlackItalic.woff') format('woff'),
                 url('/media/fonts/Satoshi-BlackItalic.ttf') format('truetype');
        font-weight: 900;
        font-display: swap;
        font-style: italic;
    }
    @font-face {
        font-family: 'Satoshi-Variable';
        src: 
                 url('/media/fonts/Satoshi-Variable.woff') format('woff'),
                 url('/media/fonts/Satoshi-Variable.ttf') format('truetype');
        font-weight: 300 900;
        font-display: swap;
        font-style: normal;
    }
    @font-face {
        font-family: 'Satoshi-VariableItalic';
        src: 
                 url('/media/fonts/Satoshi-VariableItalic.woff') format('woff'),
                 url('/media/fonts/Satoshi-VariableItalic.ttf') format('truetype');
        font-weight: 300 900;
        font-display: swap;
        font-style: italic;
    }

    body{
        background-color: #FFFFFF;
        margin: 0px;
    }

    .hide{
        display: none;
    }

    .mobile790{
        display: none!important;
    }

    @media (max-width: 790px) {
    
    .mobile790{
        display: grid!important;
    }
    
    .desktop790{
        display: none;
    }
    
}

.mobile1400{
    display: none;
}

.mobile1200{
    display: none;
}

/* Fim geral
 Início header */

    header{
            position: absolute;
            padding: 0px 0px;
            width: 100%;
            top: 30px;
            z-index: 99;
    }

    .containerHeader{
        display: flex;
        justify-content: space-between;
        padding: 0px 105px;
    }

    nav {
        &.primary-navigation {
            display: block;
            padding: 10px 0 0 0;
            text-align: center;
            font-size: 16px;

            ul li {
                list-style: none;
                margin: 0 auto;
                display: inline-block;
                padding: 0 20px;
                position: relative;
                text-decoration: none;
                text-align: center;
                font-family: 'Satoshi-Medium', sans-serif;
                color: black;
            }

            ul li.has-dropdown {
                    padding-bottom: 30px;
            }

            li a {
                font-size: 16px;;
                font-family: 'Satoshi-Regular', sans-serif;
                color: white;
                display: inline-block;
                padding-bottom: 0;
            }

            li a:hover {
            }

            li:hover {
                cursor: pointer;
            }

            ul li ul {
                visibility: hidden;
                opacity: 0;
                position: absolute;
                padding-left: 0;
                left: 0;
                top: 100%;
                margin-top: 0;
                transform: translateY(-50px);
                display: none;
                background: white;
                transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
            }

            ul li:hover > ul,
            ul li ul:hover {
                visibility: visible;
                opacity: 1;
                display: block;
                min-width: 200px;
                text-align: left;
                padding-top: 20px;
                box-shadow: 0px 2px 12.5px 0px rgba(53, 53, 53, 0.30);
                transform: translateY(0);
            }

            ul li ul li {
                clear: both;
                width: 100%;
                text-align: left;
                margin-bottom: 20px;
                border-style: none;
            }

            ul li ul li a:hover {
                padding-left: 10px;
                transition: all 0.3s ease;
            }
        }
    }

    a{
        color: white;
        text-decoration: none;
    }

    ul li ul li a { transition: all 0.5s ease; }

    .ulHeader{
            margin-top: 0;
            margin-bottom: 10px;
            padding: 15px 10px;
            border-radius: 21px;
    }

    .dropdown{
            border-radius: 20px;
            background: rgba(0, 0, 0, 0.40)!important;
            box-shadow: 0px 2px 12.5px 0px rgba(53, 53, 53, 0.30);
    }

    header img{
            max-height: 80px;
    }

    .backgroundMenus{
            height: 55px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.30);
            box-shadow: 0 2px 12.5px 0 rgba(53, 53, 53, 0.30);
    }

    .non-clickable-menu {
        cursor: default;
        color: #FFF;
    }

    .menu-panel > ul{
        padding: 0px;
    }

    .h2HappyClients{
        text-align: center;
        font-family: 'Satoshi-Bold', sans-serif;
        margin-top: 80px;
    }

    /* Fim header
    
    Início footer*/

    footer {
    background-color: #0F0F0F;
}

.containerFooter {
    padding: 60px 105px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

#containerFooter1 {
    padding-bottom: 20px;
    margin-top: 90px;
}

#containerFooter2 {
    padding-top: 60px;
}

/* --- MODIFIED BLOCK --- */
/* Positioning styles have been moved here from .svgTop */
.voltarTopoContainer {
    position: fixed;
    bottom: 50px;
    right: 100px;
    z-index: 10000;
    filter: drop-shadow(2px 4px 6px black);

    /* Your existing styles are preserved */
    display: flex;
    cursor: pointer;
    align-items: center;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

/* This rule remains the same */
.voltarTopoContainer.show {
    opacity: 1;
    visibility: visible;
}

/* --- MODIFIED BLOCK --- */
/* The .svgTop class no longer needs positioning styles */
.svgTop {
    color: white;
    width: 50px;
}
/* --- END OF MODIFICATIONS --- */

.voltarTopo {
    color: #FFF;
    font-family: 'Satoshi-Regular';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.container2Footer img {
    transform: scale(0.7);
}

.logosFooter {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footerMsg {
    color: #FFF;
    font-family: 'Satoshi-Regular';
    font-size: 35px;
}

.footerMsg span {
    color: #FFF;
    font-family: 'Satoshi-Bold';
    font-size: 35px;
}

.footer2stFr {
    display: flex;
    justify-content: space-between;
}

.footerMenu div {
    color: #FFF;
    font-family: 'Satoshi-Bold';
    font-size: 16px;
}

.footerMenu ul {
    list-style: none;
    padding: 0px;
    line-height: 32px;
}

.footerMenu ul li {
    color: #FFF;
    font-family: 'Satoshi-Regular';
    font-size: 16px;
}

.footerMenu ul li:hover {
    text-decoration: underline;
    cursor: pointer;
}

.infoFooter {
    display: flex;
    color: #FFF;
    font-family: 'Satoshi-Bold';
    font-size: 16px;
    justify-content: space-between;
}

.infoFooter div:last-child {
    font-family: 'Satoshi-Regular';
}

.infoFooter div:hover {
    cursor: pointer;
    text-decoration: underline;
}

.livroReclamacoes {
    height: 10px;
}

.livroReclamacoes img {
    position: absolute;
    right: 105px;
    transform: translateY(-35px);
    padding: 20px;
}

.footer1stFr,
.footer2stFr {
    border-top: 1px solid #3b3b3b;
    padding-top: 25px;
}

.footerHd {
    font-size: 16px;
    font-family: 'Satoshi-Regular';
    color: #FFF;
}

.footerHd span {
    font-family: 'Satoshi-Bold';
}

    /* Fim footer */

    /* Homepage */

    .blockBanner{
            background-color: #FFF;
            color: #1E1E1E;
            width: 70%;
            display: flex;
            position: absolute;
            left: 50%;
            transform: translate(-50%, -80px);
            z-index: 10;
            justify-content: space-between;
            align-items: center;
            padding: 40px 60px;
            box-shadow: 0 2px 12.5px 0 rgba(53, 53, 53, 0.30);
    }

    .blockBanner > div{
        display: flex;
        align-items: center;
        gap: 30px;
        flex: 1;
    }

    .blockBanner > div:first-child {
        justify-content: flex-start;
    }

    .blockBanner > div:nth-child(2) {
        justify-content: center;
    }

    .blockBanner > div:last-child {
        justify-content: flex-end;
    }

    .blockBanner > div > div{
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .blockBanner h3{
        font-family: 'Satoshi-Light'!important;
        font-size: 18px;
        color: #1e1e1e;
        margin: 0px;
    }

    .blockBanner h2{
        font-family: 'Satoshi-Regular';
        font-size: 28px;
        color: #1e1e1e;
        margin: 0px;
    }

 .menusBanner {
    display: flex;
    width: 100%;
}

.menusBannerInner {
    position: relative;
    background-color: #2D2D2D;
    border: 1px solid #FFF;
    width: 25%;
    height: 120px;
    color: #FFF;
    font-family: 'Satoshi-Regular';
    font-size: 40px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Efeito de preenchimento (esquerda para direita) */
.menusBannerInner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #1E1E1E;
    transition: width 0.3s ease;
    z-index: 0;
}

/* Container do texto para o efeito de salto */
.menusBannerInner div {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

/* Efeito da seta (opcional) */
.menusBannerInner svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

/* Ao passar o mouse: */
.menusBannerInner:hover::before {
    width: 100%;
}

.menusBannerInner:hover div {
    transform: translateX(10px);
}

.menusBannerInner:hover svg {
    transform: translateX(5px); /* Movimento menor para a seta */
}
    .menusBannerInner{
        padding: 40px 105px;
        display: flex;
        justify-content: space-between;
        align-items: end;
    }

    .menusBanner > div:first-child{
        border-left: none;
    }

     .menusBanner > div:last-child{
        border-right: 0px;
     }

    .miniviewHomepage{
        background-color: #FFF;
        padding: 60px 105px;
    }

    #miniview-text-target, #miniview-text-target h2{
        width: 60%;
        color: #1E1E1E;
        font-family: 'Satoshi-Light';
        font-size: 45px;
        font-style: normal;
        line-height: normal;
        margin-top: 0px;
    }

    #miniview-text-target h2{
        width: 100%;
        color: #1E1E1E;
        font-family: 'Satoshi-Light';
        font-size: 45px;
        font-style: normal;
        line-height: normal;
        margin-top: 0px;
    }

    .miniviewHomepage div{
        color: #1E1E1E;
        font-family: 'Satoshi-Regular';
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 105%; 
    }

    .miniviewHomepage svg{
        transform: translateY(4px);
    }

    .iconsContainer{
        display: flex;
        background-color: white;
        color: black;
        justify-content: center;
        padding: 160px 105px;
        gap: 160px;
        padding-bottom:100px;
    }

    .iconsContainer > div{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .iconsContainer img{
        height: 60px;
    }

    .iconsTextHome{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .iconsTextHome h2{
        color: #1E1E1E;
        font-family: 'Satoshi-Regular';
        font-size: 36px;
        margin: 0px;
        margin-top: 20px;
    }

    .iconsTextHome h3{
        color: #1E1E1E;
        font-family: 'Satoshi-Regular';
        font-size: 20px;
        margin: 0px;
        font-weight: 400!important;
    }

    .eventsContainer{
        background-color: #F1F1F1;
        padding: 100px 105px;
        overflow: hidden;
    }

    .tituloEventos{
        color: #1E1E1E;
        font-family: 'Satoshi-Medium';
        font-size: 48px;
        font-weight: 500;
        line-height: normal;
        margin: 0px;
        margin-bottom: 40px;
    }

    a.verTudo{
        color: #1E1E1E;
    }

        /* caroussel noticias homepage*/

            

            .carousel-cell{
                height: 310px;
                width: 600px;
            }

            .carousel-cell-bloco{
                height: 100%;
                width: 90%;
                background-size: cover;
                background-position: center;
                filter: brightness(0.9);
            }

            .titleBlockNewHomepage{
            position: absolute;
            bottom: 0px;
            color: white;
            font-family: 'Metropolis', sans-serif;
            font-size: 16px;
            width: 100%;
            display: flex;
            text-transform: uppercase;
            }

            .titleBlockNewHomepage div:first-child{
                width: 70%;
                padding-left: 25px;
                padding-bottom: 25px;
            }

            .titleBlockNewHomepage div:nth-child(2){
                width: 30%;
            }

            .titleBlockNewHomepage div:nth-child(2) i{
                width: 100%;
                text-align: right;
            }

            .fa-chevron-right:before {
                padding-right: 25px;
                font-size: 15px;
                transform: translateY(-10px);
            }

            .gradientFilterNewHomepage{
                width: 100%;
                height: 100%;
                background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
                transition: opacity 0.2s ease-in-out;
            }


            .flickity-viewport {
                overflow: visible!important;
            }

            .flickity-button{
                border-radius: 0px!important;
                background-color: white!important;
                top: -90px!important;
                margin-top: 30px;
            }

            .flickity-button:hover{
                background-color: black!important;
            }

            .flickity-button:hover svg{
                color: white;
            }

            .previous{
                right: 100px!important;
                left: unset!important;
            }

            .hoverNewHome{
                cursor: pointer;
            }

            /* Animação de "salto" da seta */
            .hoverNewHome:hover .titleBlockNewHomepage {
                animation: bounce 0.45s ease-in-out;
            }

            .hoverNewHome:hover .gradientFilterNewHomepage{
                opacity: 0;
            }

            /* Definindo o efeito de salto
            @keyframes bounce {
                0%, 100% {
                    transform: translateX(0);
                }
                50% {
                    transform: translateX(10px);
                }
            } */

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

            .nextEvents button{
                color: #1E1E1E;
                font-family: 'Satoshi-Bold';
                font-size: 20px;
                background-color: transparent;
                border: none;
            }

            .nextEvents svg{
                transform: translateY(4px);
            }

        /* fim carrosse noticias homepage */

        .menusBannerMobile{
            display: none;
        }

    .lstView {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

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

    .gradientBtmTop {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #0F0F0F 100%);
        z-index: 1;
    }

    .blockBanner img{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .itemSvg{
        position: relative;
    }

    .dataNoticiaHomepage{
        color: #1E1E1E;
        font-family: 'Satoshi-Medium';
        font-size: 14px;
        font-weight: 400;
        margin-top: 20px;
    }

    .tituloNoticiaHomepage,
    .textoNoticiaHomepage {
        /* Add this line */
        width: 90%; 
    }
    .news-card-link {
        display: block; /* Makes the <a> tag behave like a div */
        text-decoration: none; /* Removes underline from all text inside */
        color: inherit; /* Makes text inside inherit its color */
        width: 600px; /* Same as your .carousel-cell */
    }

    /* Now you can easily control the text padding and width */
    .news-card-text {
        width: 90%; /* Match the image block width */
        margin: 0; /* Optional: center the text block if needed */
    }

.tituloNoticiaHomepage:hover {
    text-decoration: underline; /* Add hover effect back to just the title */
}
    .tituloNoticiaHomepage{
        color: #1E1E1E;
        font-family: 'Satoshi-Bold';
        font-size: 22px;
        text-decoration-line: underline;
        text-underline-position: from-font;
        margin-top: 15px;
    }

    .textoNoticiaHomepage{
        color: #1E1E1E;
        font-family: 'Satoshi-Regular';
        font-size: 16px;
        font-weight: 400;
        margin-top: 15px;
    }

    .textoNoticiaHomepage {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        height: 4em; /* Adjust depending on your font size */
    }

    .aMiniViewHm{
        margin-top: 30px;
        color: #1E1E1E;
        font-family: 'Satoshi-Regular';
        font-size: 18px;
    }

    .noticia-cell{
        height: 300px;
    }

    .containerListNews{
        display: none;
        grid-template-columns: 1fr!important;
        gap: 40px;
    }

    /* News Grid Homepage */
    .newsGridHomepage {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        width: 100%;
    }

    .newsGridHomepage .news-card-link {
        text-decoration: none;
        color: inherit;
        display: block;
        width: 100%;
    }

    .newsGridHomepage .news-card {
        width: 100%;
    }

    .newsGridHomepage .news-image-container {
        width: 100%;
        aspect-ratio: 1 / 0.8;
        overflow: hidden;
    }

    .newsGridHomepage .news-image-bg {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: transform 0.3s ease;
    }

    .newsGridHomepage .news-card-link:hover .news-image-bg {
        transform: scale(1.05);
    }

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


    /* Fim homepage */


    /* Base - Fados e Salas */

    .bannerFados {
        position: relative;
    }

    .hsFados{
        padding: 50px 105px;
        padding-bottom: 0px;
        margin-bottom: 10px;
        padding-top:
    }

    .h2Fados{
        color: #000;
        text-align: left;
        font-family: 'Satoshi-Regular';
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin: 0;
        width: 50%;
        margin-top: 10px;
    }

    .h1Fados {
        color: #1E1E1E;
        text-align: left;
        font-family: 'Satoshi-Bold';
        font-size: 80px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin: 0;
    }

    @media (max-width: 1200px) {
        .hsFados {
            padding: 40px 40px;
            padding-bottom: 0px;
        }
        .h1Fados {
            font-size: 50px;
        }
    }

    @media (max-width: 768px) {
        .hsFados {
            padding: 40px 40px;
            padding-bottom: 0px;
        }
        .h1Fados {
            font-size: 36px;
        }
        .h2Fados {
            width: 100%;
        }
    }

    .fadosFlex {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 70px;
        color: #000;
        text-align: justify;
        font-family: 'Satoshi-Regular';
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding: 60px 105px;
        align-items: center;
    }

    .fadosFlex2 {
        /*display: grid;*/
        /*gap: 70px;*/
        color: #000;
        text-align: justify;
        font-family: 'Satoshi-Regular';
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding: 60px 105px;
        align-items: center;
    }

    .fadosFlex3 {
        display: grid;
        gap: 70px;
        grid-template-columns: 1fr 1fr;
        color: #000;
        text-align: justify;
        font-family: 'Satoshi-Regular';
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding: 60px 105px;
    }

    .numberP{
            width: 34%;
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
        }

    /* Styling for the floated image container */
    .fadosFlex2 .image-container {
    float: right;         /* Aligns the image to the right */
    width: 45%;           /* Sets the image container to take up 45% of the parent width */
    margin-left: 50px;    /* Adds space between the text and the image */
    margin-bottom: 30px;  /* Adds space below the image if text is short */
    }

    /* Ensures the image fits perfectly within its new container */
    .fadosFlex2 .image-container img {
    width: 100%;
    height: auto;       /* Maintains the image's aspect ratio */
    }


    .fadosFlex3 .image-container {
    float: right;         /* Aligns the image to the right */
    width: 100%;           /* Sets the image container to take up 45% of the parent width */
    margin-left: 50px;    /* Adds space between the text and the image */
    margin-bottom: 30px;  /* Adds space below the image if text is short */
        max-width: -webkit-fill-available;
    }

    /* Ensures the image fits perfectly within its new container */
    .fadosFlex3 .image-container img {
    width: 95%;
    height: auto;       /* Maintains the image's aspect ratio */
    }

    .fadosFlex a{
        color: #00008A;
    }

    .salasFlex {
        display: grid;
        grid-template-columns: 1fr 3.5fr;
        gap: 70px;
        color: #000;
        text-align: left;
        font-family: 'Satoshi-Regular';
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding: 60px 105px;
        padding-bottom: 65px;
        align-items: center;
    }

    .salasFlex h2 {
        color: #000;
        font-family: 'Satoshi-Bold';
        font-size: 24px;
    }

    .fadosFlex img {
        width: 100%;
        /*height: 100%;
        object-fit: cover;*/
        }

    .salasFlex img {
        width: calc(25% - 40px);
        height: fit-content;
    }

    .salasGaleria{
        display: flex;
        gap: 40px;
        justify-content: space-between;
    }

    .salasGaleria img{
        width: 290px;
        height: 290px;
        object-fit: cover;
    }

    .containerBannersFados {
        display: grid;
        grid-template-columns: 1.2fr 3fr;
        margin-top: 45px;
        margin-bottom: 105px;
    }

    .tabsBanner {
        background-color: #2D2D2D;
        cursor: pointer;
    }

    .tab.active{
        background-color: #1E1E1E;
    }

    .tabsBanner div {
        position: relative;
        overflow: hidden;
        border: 1px solid white;
        color: #FFF;
        font-family: 'Satoshi-Regular';
        font-size: 24px;
        min-height: 150px;
        padding-left: 105px;
        padding-bottom: 30px;
        align-content: end;
        border-bottom: 0px;
        border-left: 0px;
        border-right: 0px;
        transition: transform 0.3s ease;
    }

    .tabsBanner span {
        z-index: 99;
    }

    .tabsBanner div::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background-color: #1E1E1E;
        transition: width 0.3s ease;
        z-index: 0;
    }

    .tabsBanner div:hover::before {
        width: 100%;
    }

    .tabsBanner div * {
        position: relative;
        z-index: 1;
    }

    .tabsBanner svg {
        position: absolute;
        right: 50px;
        bottom: 25px;
        transition: transform 0.3s ease;
    }

    .tabsBanner div:hover svg {
        transform: translateX(5px);
    }

    .tabsBanner div:hover > span {
        transform: translateX(10px);
        transition: transform 0.3s ease;
    }

    .tabsBanner div:hover > svg {
        transform: translateX(5px);
        transition: transform 0.3s ease;
    }

    .contentsBannerFados img{
        width: 100%;
    }

    .contentsBannerFados{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .contentsBannerFados > div{
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .tituloFados{
        color: #1E1E1E;
        font-family: 'Satoshi-Regular';
        font-size: 36px;
        padding-left: 60px;
        width: 70%;
    }

    .tituloFados span{
        color: #000;
        font-family: 'Satoshi-Regular';
        font-size: 16px;
        font-weight: 400;
    }

    .fadosImgDiv{
        background-size: cover;
        background-position: center;
    }

    .galeriasText{
        padding: 60px 105px;
        color: #1E1E1E;
        font-family: 'Satoshi-Regular';
        font-size: 16px;
        padding-bottom: 0px;
        padding-top: 0px;
    }

    .galeriasText h2{
        color: #1E1E1E;
        font-family: 'Satoshi-Medium';
        font-size: 40px;
        font-weight: 500;
        margin-bottom: 10px;
        margin-top: 45px;
    }
 
    /* Fim Base - Fados e Salas */

    /* Início Base - Base (Floor Plans) */

    .floorPlansContainer{
        padding: 60px 105px;
        padding-bottom: 105px;
        color: #000;
        font-family: 'Satoshi-Regular';
        font-size: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: justify;
    }

    .floorPlansContainer p{
        margin-bottom: 40px;
    }

    .floorPlansContainer h2{
        margin-top: 0px;
       color: #000;
        font-family: 'Satoshi-Bold';
        font-size: 24px;
        align-self: start;
    }

    .floorPlansContainer h3{
        color: #1E1E1E;
        font-family: 'Satoshi-Medium';
        font-size: 40px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .floorPlansContainer img{
        max-width: 100%;
    }

    /* Fim Base - (Floor Plans) */

    /* Início Contactos */

    .contactosContainer{
        display: grid;
        margin-top: 70px;
        margin-bottom: 70px;
        grid-template-columns: 1fr 2fr;
        gap: 40px;
        padding: 0px 105px;
        color: #000;
        font-family: 'Satoshi-Regular';
        font-size: 16px;
        /*transform: translateY(60px);*/
        position: relative;
        z-index: 30;
    }

    .contactosContainer span{
        text-decoration: underline;
    }

    .contactosContainer h3{
        color: #000;
        font-family: 'Satoshi-Bold';
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin: 0px;
    }

    .contactosContainer > div{
        box-shadow: 0px -4px 25px 0px rgba(0, 0, 0, 0.10);
        padding: 30px;
        background: white;
        z-index: 999;
    }

    .contactosContainer h2{
        margin: 0px;
        color: #231F20;
        font-family: 'Satoshi-Black';
        font-size: 24px;
        margin-bottom: 30px;
    }

    .name_form{
        color: #231F20;
        font-family: 'Satoshi-Bold';
        font-size: 24px;
    }

        /* Formulários */

        /* Formulários */

        .input-group {
            flex-direction: column;
        }

        .input-group-addon label{
            color: #888;
            font-family: 'Metropolis', sans-serif;
            font-size: 16px;
            font-weight: 400;
        }

        #form_view{
            height: 100%;
        }

        .input-group-addon label {
            transform: translateY(11px);
            background-color: white;
            padding: 0px 3px;
            width: fit-content;
        }

        #enviarform{
            background: #000;
            font-family: 'Satoshi-Regular', sans-serif;
            font-size: 16px;
            color: #FFF;
            font-weight: 400;
            border: none;
            border-radius: 0px;
            padding: 12px 25px;
            cursor: pointer;
        }

        #enviarform a{
            text-decoration: none;
        }

        .flexBtn{
            display: flex;
        }

        #element_93 option:first-child{
            color: grey;
        }

        .invalid_txt{
            display: none;
        }

        .LV_validation_message{
            display: none;
        }

        .div_block_ele {
            position: relative;
            padding-bottom: 30px;
            /*padding: 10px;*/
        }
        .LV_validation_message {
            position: absolute;
            top: 32px;
            left: 0px;
        }

        .form-control {
            display: block;
            width: 100%;
            padding: 0.375rem 0.75rem;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.5;
            color: #212529;
            background-color: #fff;
            background-clip: padding-box;
            border: 1px solid #ced4da;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border-radius: 0.25rem;
            transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        }

        .input-group {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            align-items: stretch;
            width: 100%;
        }

        iframe{
            transform: translateY(4px);
        }

        .siga{
            display: flex;
            gap: 5px;
            align-items: center;
        }

        .siga img{
            margin-left: 10px;;
        }

        .siga a{
            display: flex;
        }

        /* Fim */


    /* Fim Contactos */

    /* Programa */

    #programaFlex{
            padding-top: 60px;
    padding-bottom: 45px !important;
    }

/* Fim Programa */


/* Gastronomia */

    #gastronomiaFlex{
            padding-top: 60px;
    padding-bottom: 45px !important;
    }

    .paddingTextos{
        padding-left: 105px;
        padding-right: 105px;
        padding-top: 60px;
        font-family: 'Satoshi-Regular';
        text-align: justify;
    }

/* Fim Gastronomia */

/* Bilheteira */

#bilheteiraFlex{
    grid-template-columns: 1.5fr 1fr;
}

#detalheFlex{
    grid-template-columns: 1.5fr 1fr;
}

.titulosBilheteira{
    color: #1E1E1E;
    font-family: 'Satoshi-Regular';
    font-size: 16px;
}

#titulosBilheteira h2{
    color: #1E1E1E;
    font-family: 'Satoshi-Regular';
    font-size: 40px;
    margin: 0px;
}

.marginTable{
    width: calc(100% - 140px );
    display: flex;
    justify-self: center;
    margin-top: 80px;
    padding-left: 105px;
    padding-right: 105px;
}


/* Fim Bilheteira */

/* início Shows (utiliza base Fados) */

.containerMiniviewsShows{
    padding: 105px;
    padding-top: 45px;
    padding-bottom: 45px;
}

.containerMiniviewsShows img{
    width: 356px;
    height: 356px;
    object-fit: cover;
}

.containerMiniviewsShows > div{
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    color: #000;
    font-family: 'Satoshi-Regular';
    font-size: 16px;
}

.textoJust{
    text-align: justify;
}

.containerMiniviewsShows h2{
    color: #1E1E1E;
    font-family: 'Satoshi-Regular';
    font-size: 40px;
    margin: 0px;
}

.containerMiniviewsShows h3{
    color: #1E1E1E;
    font-family: 'Satoshi-Light';
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 40px;
}

.containerMiniviewsShows > div > div{
    width: 40%;
} 

#label_element_67{
    display: none;
}

#label_element_68{
    display: none;
}

#label_element_69{
    display: none;
}

#label_element_70{
    display: none;
}

#label_element_71{
    display: none;
}


/* Fim shows */

/* Tech e Recepção */

/* ========================================= */
/*          Tech e Recepção Section          */
/* ========================================= */

/* --- 1. Desktop Layout (Default) --- */
/* This is for screens wider than 1200px */
 #salasTechFlex{
            padding-bottom: 40px;
        }

.techContainer2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
    gap: 60px;
    align-items: stretch;
    margin-bottom: 105px;
    font-family: 'Satoshi-Regular';
}

.techContainer2 > .video-container {
    grid-column: span 2; /* Video spans 2 columns on desktop */
}

/* Styling for fonts and lists within this section */
.techContainer2 h2 {
    font-family: 'Satoshi-Bold';
    font-size: 24px;
}

.techContainer2 ul {
    list-style: none;
    padding: 0;
    letter-spacing: 0.5px;
}

.techContainer2 ul li {
    padding-top: 12px;
    font-kerning: none;
}

/* Responsive video iframe styling */
.video-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}


/* --- 2. Tablet and Mobile Layout --- */
/* This rule activates for screens 1200px wide or smaller */
@media (max-width: 1200px) {
    .techContainer2 {
        grid-template-columns: 1fr; /* Switch to a single column layout */
        gap: 40px; /* You might want a smaller gap on smaller screens */
    }

    /* Reset the video to only span one column */
    .techContainer2 > .video-container {
        grid-column: span 1; 
    }

    .h2HappyClients{
        margin-top: 40px;
    }
}


/* Fim Tech e Recpcao */

/* Sobre nós - A nossa história */

    #galeriasSobreNos{
        padding-top: 20px;
    }

    #galeriasSobreNos h2{
        font-family: 'Satoshi-Medium';
        font-size: 24px;
    }

    #hmLogoSobreNos{
        max-height: 100%;
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        float: inline-end;
        width: auto;
    }

    .h2SobreNos{
        color:#231F20;
        font-family: 'Satoshi-Medium';
        font-size: 30px;
    }

/* Fim sobre nos */

  /* --- Categories --- */
    .category-list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap; /* Allows buttons to wrap on smaller screens */
        gap: 35px; /* Space between buttons */
        list-style: none;
        padding: 0 20px; /* Add some side padding */
        margin-top: 50px; /* Space from content above */
        margin-bottom: 50px; /* Space between buttons and news grid */
    }

    .category-button {
        font-family: 'Satoshi-Medium', sans-serif;
        font-size: 16px;
        color: #1E1E1E;
        background-color: transparent;
        border: 1px solid #1E1E1E;
        border-radius: 14px;
        padding: 10px 40px;
        cursor: pointer;
        transition: all 0.2s ease-in-out;
    }

    /* Hover state for non-active buttons */
    .category-button:hover {
        background-color: #f1f1f1;
        transform: translateY(-2px);
    }

    /* Style for the selected category */
    .category-button.active {
        background-color: #1E1E1E;
        color: #FFFFFF;
        border-color: #1E1E1E;
        font-weight: bold;
    }


    /* --- News Grid Layout --- */
    .newsRow {
        display: grid;
        /* THIS IS THE KEY RULE: Creates 3 equal-width columns */
        grid-template-columns: repeat(3, 1fr);
        gap: 90px; /* Space between news cards */
        padding: 0 105px 0px 105px; /* Top, Right, Bottom, Left */
        row-gap: 60px;
    }

    /* The card itself, using the <article> tag */
    .newsRow article {
        background-color: #FFFFFF;
        /*box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);*/
        overflow: hidden; /* Ensures the image respects the border-radius */
        display: flex;
        flex-direction: column; /* Stacks image and text vertically */
        transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    }

    .newsRow article:hover {
        transform: translateY(-5px);
    }

    /* The <a> tag now wraps everything, let's style it */
    .newsRow article a {
      display: flex;
      flex-direction: column;
      height: 100%; /* Make the link fill the article */
      text-decoration: none; /* Remove underline from link wrapper */
    }

    /* Card Image Styling */
    .newsRow article img {
        object-fit: cover; /* Prevents image distortion */
        display: block;
        flex-shrink: 0; /* Prevents image from shrinking */
        aspect-ratio: 1 / 0.8;
    }

    /* Container for the text content (the div after the image) */
    .newsRow article > a > div {
        padding: 20px 25px 25px 0px;
        /* This makes the text container grow to fill remaining space, aligning cards */
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    /* Card Title */
    .newsRow article h3 {
        font-family: 'Satoshi-Bold', sans-serif;
        font-size: 20px;
        color: #1E1E1E;
        margin: 0 0 15px 0;
        line-height: 1.3;
    }

    .newsRow article h4 {
        font-family: 'Satoshi-Regular', sans-serif;
        font-size: 14px;
        color: #1E1E1E;
        margin: 0 0 15px 0;
        line-height: 1.3;
    }

    /* Card Text/Description Container */
    .newsRow article > a > div > div {
        /* This pushes the text to the bottom of its container if there is extra space */
        margin-top: auto;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;

    }
    
    /* Card Text/Description */
    .newsRow article > a > div > div > div {
        font-family: 'Satoshi-Regular', sans-serif;
        font-size: 16px;
        color: #555;
        line-height: 1.5;
    }


    /* Fallback message styling */
    .newsRow h2 {
        grid-column: 1 / -1; /* Make the message span all columns */
        text-align: center;
        font-family: 'Satoshi-Regular', sans-serif;
        color: #555;
    }

    /* --- Responsive Adjustments --- */

    /* For tablets (2 columns) */
    @media (max-width: 992px) {
        .newsRow {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            padding: 0 40px 60px 40px;
        }
    }

    /* For mobile phones (1 column) */
    @media (max-width: 768px) {
        #detalheFlex{
            padding-top: 0px;
            padding-bottom: 60px;
            gap: 30px;
        }
        .numberP{
            width: 100%;
        }
        #gastronomiaFlex{
            padding: 40px 20px;
            padding-top: 10px;
            padding-bottom: 20px!important;
        }

        .fadosFlex2 {
            padding: 40px 20px;
        }
        .fadosFlex3 {
            grid-template-columns: 1fr;
            padding: 40px 20px;
        }

        .fadosFlex2 .image-container {
            float: none;
            width: 100%;
            margin-left: 0;
            margin-bottom: 20px;
        }
        .fadosFlex3 .image-container {
            float: none;
            width: 100%;
            margin-left: 0;
            margin-bottom: 20px;
        }
        .newsRow {
            grid-template-columns: 1fr; /* Single column layout */
            gap: 40px;
            padding: 0 20px 50px 20px;
        }
        .category-list {
            gap: 10px;
        }
        .category-button {
            padding: 8px 20px;
            font-size: 14px;
        }
        .slides-per-view-section{
            padding-bottom: 60px!important;
        }
        #paddingTextosTech{
            margin-top: 30px;
            padding-top: 0px;
            margin-bottom: 40px;
        }
    }

/* Fim notícias */

/* Sustentabilidade */

.paddingTextos2{
        padding-left: 105px;
        padding-right: 105px;
        font-family: 'Satoshi-Regular';
}

.sustentabilidadeTexto h2{
    color: #000;
    font-family: 'Satoshi-Bold';
    font-size: 20px;
}

.sustentabilidadeTexto h3{
    color: #000;
    font-family: 'Satoshi-Medium';
    font-size: 16px;
}

.sustentabilidadeTexto h4{
    color: #000;
    font-family: 'Satoshi-Regular';
    font-size: 16px;
}

.sustentabilidadeTexto2{
    text-align: justify;
}

.sustentabilidadeTexto2 h3{
    color: #000;
    font-family: 'Satoshi-Regular';
    font-size: 16px;
}

.sustentabilidadeTexto2 h2{
    color: #000;
    font-family: 'Satoshi-Medium';
    font-size: 16px;
}


/* Fim sustentabilidade*/

/* Parceiros */

.flexImagens{
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.flexImagens img{
    transform: scale(0.7);
}

#textoParceiros{
    color: #000;
    font-family: 'Satoshi-Regular';
    font-size: 20px;
    width: 50%;
    margin: auto;
}

#textoPoliticas{
    color: #000;
    font-family: 'Satoshi-Regular';
    font-size: 16px;
    margin-bottom: 95px;
}


.bannerFados {
  width: 100%;
  height: 320px; /* Or any height you want. 50vh is also a great option */
  
  /* The magic properties */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  
  /* Optional: for a smoother image on high-res displays */
  /* -webkit-font-smoothing: antialiased; */
  margin-bottom: 20px;
}

/* Media Querys */

@media (max-width: 1700px) {
        .menusBannerInner {
            padding: 40px 55px;
        }

        .menusBannerInner{
            font-size: 38px;
        }

        .iconsContainer{
            gap: 140px;
        }
        .salasFlex {
        grid-template-columns: 1fr;
    }
    .salasGaleria{
            overflow-y: scroll;
        }
    }


@media (max-width: 1400px) {
    .techContainer2{
        grid-template-columns: 1fr;
    }
        .desktop1400 {
            display: none!important;
        }

        .mobile1400{
            display: block;
        }

        .swiper{
            height: 90vh!important;
        }

        .menusBanner{
            flex-direction: column;
        }

        .swiper-slide h2{
            font-size: 68px!important;
        }

        .menusBannerInner{
            width: 100%;
            padding: 0px;
            box-shadow: 0 0 0 0.5px #FFF;
            border: 0px;
        }

        .blockBanner{
                    align-items: flex-start !important;
        width: fit-content;
        margin: 40px auto !important;
        row-gap: 40px;
        flex-direction: column;
            position: static;
            transform: translate(0px, 0px)!important;
            width: 100%;
            padding: 0px;
            padding-left: 20px;
            padding-right: 20px;
            justify-content: space-around;
            margin-top: 50px;
            margin-bottom: 50px;
            box-shadow: none;
        }
        .menusBannerInner div{
            padding-left: 60px;
            padding-bottom: 20px;
        }

        .menusBannerInner svg{
            padding-right: 60px;
            padding-bottom: 20px;
        }
        .iconsContainer{
            gap: 120px;
        }

    }

    @media (max-width: 1200px) {
        #salasTechFlex{
            padding-bottom: 25px;
        }
        .contactosContainer{
            padding-left: 40px;
            padding-right: 40px;
        }
        .contactosContainer{
            grid-template-columns: 1fr;
            margin-top: -50px;
        }
        .salasFlex img{
            width: unset;
        }
        .menusBannerMobile{
            display: flex;
        }
        .menusBannerDesktop{
            display: none;
        }
        .galeriasText{
            padding-left: 40px;
            padding-right: 40px;
        }
        .marginTable{
            padding-left: 40px;
            padding-right: 40px;
        }
        .containerListNews{
            display: grid!important;
            grid-template-columns: 1fr 1fr!important;
        }
        .desktop1200 {
            display: none!important;
        }

        .mobile1200{
            display: block;
        }

        .iconsContainer{
            flex-wrap: wrap;
        }

        .voltarTopoContainer{
            right: 20px;
            bottom: 80px;
            gap: 0;
        }

        .svgTop {
            width: 40px;
        }

        .voltarTopo {
            display: none;
        }

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

        .footer2stFr{
            border-top: 0px;
            flex-direction: column;
        }

        .livroReclamacoes{
            height: auto;
        }

        .livroReclamacoes img{
            position: relative;
            left: 40px;
            right: unset;
            transform: translateY(-19px);
        }

        #containerFooter2{
            display: flex;
            flex-direction: column-reverse;
        }
        
        .containerHeader{
            justify-content: center!important;
        }

        .burger{
            position: absolute!important;
            right: 0px;
        }

        .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
            display: none!important;
        }  

        .swiper-slide h2{
            font-size: 60px!important;
        }

        .tituloEventos{
            color: #1E1E1E;
            font-family: 'Satoshi-Regular';
            font-size: 26px;
        }

        .fadosFlex{
            grid-template-columns: 1fr;
            padding: 60px 40px;
        }
        #gastronomiaFlex{
            padding: 60px 40px;
            padding-top: 60px;
            padding-bottom: 45px !important;
        }
        .footerMsg, .footerMsg span{
            font-size: 26px;
            margin-bottom: 30px;
        }
        #containerFooter2{
            padding-top: 0px;
        }
        .footer2stFr {
            border-top: 0px;
        }
        .infoFooter{
            flex-wrap: wrap;
            column-gap: 20px;
            row-gap: 15px;
            justify-content: center;
        }
        .containerFooter{
            padding: 60px 40px;
        }
        .footerHd{
            margin-inline: auto;
            color: #FFF;
            margin-top: 20px!important;
        }
        #programaFlex div:first-child{
            order: 2;
        }
        #programaFlex div:nth-child(2){
            order: 1;
        }
        .paddingTextos{
            padding-left: 40px;
            padding-right: 40px;
        }
        .containerMiniviewsShows{
            padding: 40px;
            padding-top: 45px;
            padding-bottom: 45px;
        }
        .containerMiniviewsShows img{
            width: 280px;
            height: 280px;
        }
        .containerMiniviewsShows > div{
            gap: 40px;
        }
        .containerMiniviewsShows h2{
            font-size: 32px;
        }
        .containerMiniviewsShows h3{
            font-size: 18px;
            margin-bottom: 30px;
        }
        .numberP{
            width: 50%;
        }
        .numberP2{
            width: 80%!important;
        }
        .fadosFlex2 .image-container{
            width: 40%;
            margin-left: 30px;
        }
        .fadosFlex2{
            padding: 40px 60px;
        }
        #bilheteiraFlex{
            grid-template-columns: 1fr;
        }
        #detalheFlex{
            grid-template-columns: 1fr;
        }
        .changeOrder:first-child{
            order: 2;
        }
        .changeOrder:nth-child(2) {
    order: 1; /* Or whatever order you need */
}
        .salasFlex{
            grid-template-columns: 1fr;
            padding-left: 40px;
            padding-right: 40px;
        }
        .eventsContainer{
            padding: 60px 40px;
        }
        .floorPlansContainer{
            padding-left: 40px;
            padding-right: 40px;
        }
        .floorPlansContainer p {
            margin-bottom: 70px;
        }
    }

    @media (max-width: 1100px) {
        .swiper-slide h2{
                    font-size: 50px!important;
        }

        .menusBannerInner{
            font-size: 36px;
        }
        .iconsContainer{
            gap: 100px;
        }
        .fadosFlex{
            padding-top: 30px;
            padding-bottom: 30px;
        }
    }

    @media (max-width: 992px) {
        .caracteristicasTech{
            grid-template-columns: 1fr;
        }
        .swiper-slide h2{
            font-size: 36px!important;
        }

        .swiper-button-prev{
            left: 40px!important;
             transform: translateY(-50%) scale(0.85) !important;
        }

        .swiper-button-next{
            right: 40px!important;
            transform: translateY(-50%) scale(0.85) !important;
        }

        .blockBanner {
            align-items: flex-start !important; /* Left-align items */
            width: fit-content; /* Shrink container to content width */
            margin: 40px auto !important; /* Center the container */
            row-gap: 40px;
        }
        header img{
            height: 80px;
        }

        .miniviewHomepage{
            padding-left: 40px;
            padding-right: 40px;
        }

        .menusBannerInner div{
            padding-left: 40px;
        }

        .menusBannerInner{
            font-size: 24px;
        }
        .iconsContainer{
            gap: 80px;
        }
        .fadosFlex{
            padding-top: 30px;
        }
    }
    @media (max-width: 768px) {
        #textoParceiros{
            width: auto;
            margin-top: 30px;
        }
        .flexImagens{
            display: grid;
            gap: 60px;
            grid-template-columns: 1fr 1fr;
            justify-items: center;
            margin-top: 50px;
        }

        .flexImagens img{
            max-width: 100%;
        }
        .salasFlex{
            padding-top: 10px;
        }
        #titulosBilheteira h2{
            font-size: 30px;
        }
        .paddingTextos{
            padding-top: 10px;
        }
        .fadosFlex{
            padding-top: 10px;
            padding-bottom: 10px;
        }
        .hsFados {
            top: 65%;
        }
        .bannerFados {
            height: 310px;
        }
        .h1Fados {
            font-size: 36px;
        }
        .lstView img{
            height: 80vh;
            width: auto;
            place-self: center;
        }
        .containerListNews{
            display: grid!important;
            grid-template-columns: 1fr!important;
        }
        .iconsTextHome h2{
            font-size: 42px;
            margin-top: 15px;
        }
        .iconsContainer{
            gap: 70px;
        }
        #bilheteiraFlex table thead th:nth-child(1){
            font-size: 20px!important;
        }
        #bilheteiraFlex table thead th:nth-child(2),
        #bilheteiraFlex table thead th:nth-child(3) {
            display: none;
        }
        #bilheteiraFlex table tbody tr {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 6px 0;
        }
        #bilheteiraFlex table td[rowspan="2"] {
            width: 100%;
            padding-top: 40px;
            padding-bottom: 15px;
            padding-left: 0;
            padding-right: 0;
        }
        #bilheteiraFlex table tbody > tr:first-of-type > td[rowspan="2"] {
            padding-top: 0;
        }
        #bilheteiraFlex table td {
            border: none;
            padding: 0;
        }
        #bilheteiraFlex table td:last-child {
            font-weight: bold;
        }
        #bilheteiraFlex {
            padding-top: 20px;
        }
        #bilheteiraFlex td, #bilheteiraFlex  th{
            padding-left: 0px!important;
        }
         .marginTable tr,
    .marginTable td {
        display: block;
        width: 100% !important; /* Adding !important to width as well */
        box-sizing: border-box;
    }

    .marginTable tr {
        border-bottom: none !important;
    }

    /* === THIS IS THE CORRECTED RULE FOR THE TITLE CELL === */
    .marginTable td:first-child {
        padding-top: 30px !important;
        padding-bottom: 10px !important; /* This controls the space you asked about */
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* === THIS IS THE CORRECTED RULE FOR THE DESCRIPTION CELL === */
    .marginTable td:last-child {
        padding-top: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 30px !important;
        padding-left: 0 !important;
        border-bottom: 1px solid #000;
    }
    
    .marginTable tr:first-of-type td:first-child {
        padding-top: 0 !important; /* Ensure the first item has no top space */
    }

    .marginTable tr:last-of-type td:last-child {
        border-bottom: none;
    }
    .floorPlansContainer{
        padding-top: 10px;
    }
    .floorPlansContainer p {
        margin-bottom: 60px;
    }
    }

/* Responsive image+text layout - New classes for flexible content */
.contentWithImageResponsive {
    color: #000;
    text-align: justify;
    font-family: 'Satoshi-Regular';
    font-size: 16px;
    padding: 60px 105px;
}

.contentWithImageResponsive .imageRight {
    float: right;
    width: 45%;
    margin-left: 50px;
    margin-bottom: 30px;
}

.contentWithImageResponsive .imageRight img {
    width: 100%;
    height: auto;
}

.contentWithImageResponsive::after {
    content: "";
    display: table;
    clear: both;
}

/* Tablet breakpoint */
@media (max-width: 1400px) {
    .contentWithImageResponsive {
        padding: 40px 60px;
    }

    .contentWithImageResponsive .imageRight {
        width: 50%;
        margin-left: 30px;
    }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
    .contentWithImageResponsive {
        padding: 40px 20px;
    }

    .contentWithImageResponsive .imageRight {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
    }
}

/* 50/50 Column Layout - Side-by-side columns with mobile stack */
.columns5050 {
    display: flex;
    gap: 50px;
    padding: 60px 105px;
    align-items: flex-start;
}

.columns5050 .col-left {
    flex: 0 0 50%;
    max-width: 50%;
}

.columns5050 .col-right {
    flex: 0 0 50%;
    max-width: 50%;
}

.columns5050 img {
    width: 100%;
    height: auto;
}

/* Tablet breakpoint */
@media (max-width: 1400px) {
    .columns5050 {
        padding: 40px 60px;
        gap: 30px;
    }
}

/* Mobile breakpoint - Stack with text on top, image on bottom */
@media (max-width: 768px) {
    .columns5050 {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
    }

    .columns5050 .col-left {
        flex: 0 0 100%;
        max-width: 100%;
        order: 2;  /* Image bottom on mobile */
    }

    .columns5050 .col-right {
        flex: 0 0 100%;
        max-width: 100%;
        order: 1;  /* Text top on mobile */
    }

    .containerMiniviewsShows{
        padding: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .containerMiniviewsShows > div{
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .containerMiniviewsShows img{
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    .containerMiniviewsShows > div > div{
        width: 100%;
    }

    .containerMiniviewsShows h2{
        font-size: 28px;
    }

    .containerMiniviewsShows h3{
        font-size: 18px;
        margin-bottom: 20px;
    }

    .containerMiniviewsShows{
        font-size: 15px;
    }
}
