:root {
    --primary-color: #983C22;
    /* Marrom avermelhado */
    --secondary-color: #DAB681;
    /* Bege/Areia */
    --accent-color: #551314;
    /* Bordô */
    --dark-blue: #032639;
    /* Azul escuro */
    --dark-green: #244938;
    /* Verde escuro */
    --text-color: #e5e5e5;
    /* Cor do texto principal - branco */
    --bg-color: #000000;
    /* Cor de fundo principal - preto */
    --bg-overlay: rgba(0, 0, 0, 0.8);
    /* Overlay para fundos */
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

/* Garantir que todo conteúdo fique visível sobre os degradês */
section .container,
section h2,
section p,
section .content,
section .section-intro,
section .cursos,
section .curso,
section .espetaculos-grid,
section .espetaculo,
section .more-shows,
section .shows-grid,
section .show-card,
section .cinema,
section .cinema-grid,
section .cinema-item,
section .contact-content,
section .contact-info,
section .contact-form,
section .stats {
    position: relative;
    z-index: 2;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {


    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--secondary-color);
}

h2 {
    font-size: 3rem;
    text-align: center;
    position: relative;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 20px auto 0;
    transform: scaleX(0);
    transition: transform 0.8s ease;
    animation: expandLine 1.5s forwards;
}

@keyframes expandLine {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

p {
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.8;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    border: none;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(152, 60, 34, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(152, 60, 34, 0.4);
}

.btn:hover::before {
    left: 100%;
    animation: shineEffect 1.5s infinite;
}

@keyframes shineEffect {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.3s;
    z-index: 1 !important;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Background Effect */
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-color) 70%);
    opacity: 0.8;
    z-index: -1;
}

/* Custom cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    pointer-events: none;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    z-index: 9999;
    opacity: 0.6;
}

/* Botu00e3o Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    opacity: 1;
    visibility: visible;
}

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

.logo img {
    width: 10em;

    transition: var(--transition);
    filter: drop-shadow(0 0 5px rgba(218, 182, 129, 0.5));
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(218, 182, 129, 0.8));
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

@media (max-width: 1200px) {
    nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1002;
        transform: translateX(100%);
        transition: all 0.5s ease;
        opacity: 0;
        visibility: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    nav ul li {
        margin: 15px 0;
        text-align: center;
        width: 100%;
    }

    nav ul li a {
        font-size: 1.2rem;
        padding: 10px 0;
        display: block;
        color: var(--text-color);
        text-decoration: none;
    }

    .menu-toggle {
        display: block;
    }
}

nav ul li a {
    font-weight: 500;
    position: relative;
    color: var(--text-color);
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 0.4s ease;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    transition: var(--transition);
    z-index: 1001;
}

@media (min-width: 1201px) {
    .menu-toggle {
        display: none !important;
    }
}

.menu-toggle:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.menu-toggle.active i::before {
    content: '\f00d';
}

nav.mobile-active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
#hero {
    height: 100vh;
    /* background-image:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../images/banner.webp'); */
    background-image: url('../images/banner.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-color);
    position: relative;
    padding-top: 0;
    overflow: hidden;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-color), transparent);
}

#hero .container {
    margin-top: 3em;
    z-index: 2;
}

#hero h1 {
    font-size: 6rem;
    letter-spacing: 8px;
    margin-bottom: 10px;
    color: var(--text-color);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
    text-shadow: 0 0 15px rgba(218, 182, 129, 0.5);
    z-index: 2;
}

#hero h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-transform: none;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.3s;
}

#hero img {
    margin: 0 auto;
    width: 30vw;
}

#hero h2::after {
    display: none;
}

#hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 1em auto 40px;
    opacity: 0;
    font-weight: bold;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.6s;
}

#hero .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.9s;
    background-color: rgb(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 0px 15px rgba(255, 255, 255, 0.3);
}

/* Particles effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    background-color: rgba(218, 182, 129, 0.0);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-30px) translateX(30px);
    }

    50% {
        transform: translateY(-60px) translateX(0);
    }

    75% {
        transform: translateY(-30px) translateX(-30px);
    }
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--text-color);
    animation: bounce 2s infinite;
    z-index: 10;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Estilos para a seção de próximos espetáculos */
.proximos-espetaculos {
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    margin-top: -20px;
    margin-bottom: -20px;
    transform: skewY(-2deg);
}

.proximos-espetaculos .container {
    transform: skewY(2deg);
}

.proximos-espetaculos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
    z-index: 1;
}

.proximos-espetaculos::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(152, 60, 34, 0.3) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(85, 19, 20, 0.3) 100%);
    z-index: 1;
}

.proximos-espetaculos h2 {
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 3.5rem;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7);
}

.proximos-espetaculos h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 20px auto 0;
    box-shadow: 0 0 10px rgba(218, 182, 129, 0.5);
}

.proximos-espetaculos .section-intro {
    color: #fff;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.proximos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.proximo-espetaculo {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(152, 60, 34, 0.3);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.3s;
    position: relative;
    backdrop-filter: blur(5px);
}

.proximo-espetaculo:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border-color: var(--secondary-color);
}

.proximo-espetaculo::before {
    content: 'EM BREVE';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.proximo-img {
    height: 300px;
    background-size: cover;
    background-position: top center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.proximo-espetaculo:hover .proximo-img {
    transform: scale(1.1);
}

.proximo-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.proximo-espetaculo h3 {
    color: var(--secondary-color);
    padding: 25px 25px 15px;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
}

.proximo-espetaculo h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25px;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.proximo-espetaculo:hover h3::after {
    width: 100px;
}

.proximo-espetaculo p {
    padding: 0 25px 25px;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.7;
}

.em-breve {
    display: flex;
    justify-content: flex-start;
    padding: 0 25px 25px;
    gap: 15px;
}

.em-breve span {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.proximo-espetaculo:hover .em-breve span {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.em-breve span i {
    margin-right: 10px;
    font-size: 1.1rem;
}



/* Section Content */
.content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    padding: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
    border: 1px solid rgba(218, 182, 129, 0.1);
    z-index: 1;
}

.content.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.text {
    flex: 1;
    position: relative;
    z-index: 2;
}

.image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(5deg);
    transition: var(--transition);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    border: 2px solid var(--secondary-color);
}

.image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color) 0%, transparent 70%);
    opacity: 0.3;
    transition: var(--transition);
    mix-blend-mode: overlay;
}

.image:hover {
    transform: perspective(1000px) rotateY(0);
}

.image:hover::after {
    opacity: 0.1;
}

.image img {
    transition: var(--transition);
}

.image:hover img {
    transform: scale(1.05);
}

/* Companhia Section */
#companhia {
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

#companhia::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(152, 60, 34, 0.1) 0%, rgba(0, 0, 0, 0.9) 50%);
    z-index: 0;
    pointer-events: none;
}

#companhia::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(218, 182, 129, 0.15) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

/* Espetáculos Section */
#espetaculos {
    background-color: var(--bg-color);
    position: relative;
}

#espetaculos::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

.subcategory-title {
    text-align: center;
    margin: 40px 0 30px;
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(152, 60, 34, 0.5);
    padding-bottom: 15px;
}

.subcategory-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: 2;
}

.espetaculos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.espetaculo {
    background-color: rgba(3, 38, 57, 0.6);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    transform: translateY(30px);
    opacity: 0;
}

.espetaculo.fade-in {
    transform: translateY(0);
    opacity: 1;
}

.espetaculo:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.espetaculo-img {
    height: 280px;
    background-size: cover;
    background-position: top;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.espetaculo-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.espetaculo:hover .espetaculo-img {
    transform: scale(1.05);
}

.espetaculo h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.espetaculo p {
    padding: 0 20px;
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.espetaculo .show-gallery-btn {
    margin: 15px 20px;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.espetaculo .show-gallery-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.achievements {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.achievements span {
    font-size: 0.9rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.achievements i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1rem;
}

.more-shows {
    background-color: rgba(10, 10, 10, 0.85);
    padding: 40px;
    border-radius: 8px;
    margin-top: 60px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 1;
    /* Alterado para garantir visibilidade */
    transform: translateY(0);
    /* Removida a transformau00e7u00e3o inicial */
    transition: var(--transition);
    border: 1px solid rgba(152, 60, 34, 0.3);
    background-image: url('../images/pattern.png');
    background-blend-mode: overlay;
    background-size: 200px;
    z-index: 2;
}

.more-shows.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.more-shows::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(152, 60, 34, 0.5) 0%, rgba(50, 20, 10, 0.7) 50%, rgba(218, 182, 129, 0.3) 100%);
    z-index: 1;
    animation: shimmerEffect 8s ease-in-out infinite alternate;
}

@keyframes shimmerEffect {
    0% {
        opacity: 0.3;
        background-position: 0% 0%;
    }

    100% {
        opacity: 0.6;
        background-position: 100% 100%;
    }
}

@keyframes rotateGradient {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.more-shows h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(152, 60, 34, 0.5);
    padding-bottom: 15px;
}

.more-shows h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: 2;
}

/* Grid de shows */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 0 auto 40px;
    max-width: 1200px;
    position: relative;
    z-index: 2;
    justify-items: center;
}

/* Card de show */
.show-card {
    background-color: rgba(20, 20, 20, 0.8);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(152, 60, 34, 0.4);
    height: 380px;
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    position: relative;
    z-index: 3;
    width: 100%;
}

.show-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--secondary-color);
}

.show-card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.show-card-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    transition: var(--transition);
}

.show-card:hover .show-card-img {
    transform: scale(1.05);
}

.show-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.show-card h4 {
    color: var(--secondary-color);
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    transition: var(--transition);
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
   
}

.show-card:hover h4 {
    color: var(--primary-color);
}

.show-card p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 0 0 15px 0;
    flex-grow: 1;
    text-align: start;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.show-gallery-btn {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    margin-top: auto;
}

.show-gallery-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.show-list li {
    margin-bottom: 16px;
    break-inside: avoid;
    position: relative;
    padding-left: 25px;
    color: var(--text-color);
    transition: var(--transition);
    border-bottom: 1px dotted rgba(218, 182, 129, 0.1);
    padding-bottom: 10px;
}

.show-list li:before {
    content: '\f005';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.show-list li:hover {
    transform: translateX(5px);
    color: var(--secondary-color);
}

.show-list li strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.cinema {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--secondary-color);
    transform: perspective(1000px) rotateX(2deg);
}

.cinema-gallery {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cinema-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    margin: 15px;
    border-radius: 10px;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    background: var(--dark-blue);
    overflow: hidden;
}

.cinema-img-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.cinema-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.cinema-img-container:hover img {
    transform: scale(1.1);
}

.cinema-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: var(--text-color);
    transition: var(--transition);
}

.cinema-img-container:hover .cinema-overlay {
    background: linear-gradient(to top, rgba(152, 60, 34, 0.8) 0%, transparent 100%);
}

.cinema-overlay span {
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

/* Watch Now Button */
.watch-now-btn {
    display: block;
    width: 100%;
    padding: 12px 15px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    text-decoration: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.watch-now-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cinema h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* Centro Cultural Section */
#centro-cultural {
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

#centro-cultural::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 38, 57, 0.2) 0%, rgba(0, 0, 0, 0.95) 50%, rgba(85, 19, 20, 0.1) 100%);
    z-index: 0;
    pointer-events: none;
}

#centro-cultural::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(218, 182, 129, 0.1) 0%, transparent 60%);
    z-index: 0;
    animation: pulseGradient 10s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes pulseGradient {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 0.3;
    }
}

#centro-cultural .content {
    background-color: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(85, 19, 20, 0.3);
    backdrop-filter: blur(10px);
}

#centro-cultural .text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

#centro-cultural h3 {
    margin-top: 30px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

#centro-cultural ul {
    margin: 20px 0;
    padding-left: 5px;
}

#centro-cultural ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    transition: var(--transition);
}

#centro-cultural ul li:before {
    content: '\2022';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

#centro-cultural ul li:hover {
    transform: translateX(5px);
    color: var(--secondary-color);
}

/* Escola de Arte Section */
#escola-arte {
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}


#escola-arte::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
    z-index: 0;
    animation: floatPattern 60s linear infinite;
    pointer-events: none;
}

@keyframes floatPattern {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 100px;
    }
}

#escola-arte::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(36, 73, 56, 0.3) 0%, rgba(0, 0, 0, 0.9) 50%);
    z-index: 0;
    pointer-events: none;
}

.cursos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.curso {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    border-top: 3px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    z-index: 2;
    border: 1px solid rgba(36, 73, 56, 0.5);
    backdrop-filter: blur(5px);
}

.curso.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.curso::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: radial-gradient(circle at top left, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    z-index: -1;
    transition: var(--transition);
    animation: rotateBg 15s linear infinite;
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.curso:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.curso:hover::before {
    opacity: 0.2;
}

.curso i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    transition: var(--transition);
}

.curso:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

.curso h3 {

    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.curso p {
    margin-bottom: 25px;
    color: var(--text-color);
    line-height: 1.7;
    text-align: start;
}

.curso h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.curso ul {
    text-align: left;
    padding-left: 5px;
}

.curso ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    transition: var(--transition);
}

.curso ul li:before {
    content: '\2022';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.curso ul li:hover {
    transform: translateX(5px);
    color: var(--secondary-color);
}

.projeto-social {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 8px;
    margin: 60px 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
    border: 1px solid rgba(3, 38, 57, 0.5);
    backdrop-filter: blur(5px);
}

.projeto-social.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.projeto-social::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(85, 19, 20, 0.3) 100%);
    z-index: -1;
    animation: gradientShift 8s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

.projeto-social h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
    font-size: 2rem;
}

.projeto-social p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

#escola-arte .btn {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

#escola-arte .btn.fade-in {
    opacity: 1;
    transform: translateY(0);
}

#escola-arte h2,
#escola-arte .section-intro,
#escola-arte .cursos {
    position: relative;
    z-index: 2;
}

/* Apresentações Empresariais Section */
#empresarial {
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

#empresarial::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

#empresarial .content {
    background-color: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(152, 60, 34, 0.3);
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(36, 73, 56, 0.2) 100%);
    backdrop-filter: blur(10px);
}

#empresarial .text p {
    margin-bottom: 20px;
    line-height: 1.8;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid var(--secondary-color);
    transition: var(--transition);
}


#empresarial .text p:hover {
    transform: translateX(5px);
    border-left-color: var(--primary-color);
}

#empresarial h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#empresarial h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

#empresarial ul {
    margin: 20px 0;
    padding-left: 5px;
}

#empresarial ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
    transition: var(--transition);
}

#empresarial ul li:before {
    content: '\2022';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

#empresarial ul li:hover {
    transform: translateX(5px);
    color: var(--secondary-color);
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 70px;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 250px;
    margin: 20px;
    padding: 40px 30px;
    background-color: rgba(36, 73, 56, 0.7);
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.stat-item.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: radial-gradient(circle at center, var(--secondary-color) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-item:hover::before {
    opacity: 0.2;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    transition: all 0.3s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* Contato Section */
#contato {
    background-color: var(--bg-color);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

#contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(152, 60, 34, 0.1) 0%, rgba(0, 0, 0, 0.95) 50%);
    z-index: 0;
    pointer-events: none;
}

#contato::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(218, 182, 129, 0.1) 0%, transparent 60%);
    z-index: 0;
    animation: pulseGlow 10s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 0.3;
    }
}

.contact-content {
    display: flex;
    gap: 40px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: var(--text-light);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(152, 60, 34, 0.3);
    backdrop-filter: blur(5px);
}

.contact-info,
.contact-form {
    flex: 1;
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #e5e5e5;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
}

.social-media {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3em;
    height: 3em;
    background-color: var(--accent-color);
    border-radius: 50%;
    transition: all 0.3s ease;

    i {
        font-size: 1.3em;
        padding-left: 5px;
        color: var(--secondary-color);
    }
}

.social-media a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--text-light);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--bg-color);
    color: var(--lighter-color);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 38, 57, 0.2) 0%, rgba(0, 0, 0, 0.95) 50%);
    z-index: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo img {
    width: 15em;

}

.footer-links h3,
.footer-newsletter h3 {
    color: var(--lighter-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
    color: #e5e5e5;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    width: 200px;
    background-color: var(--dark-green);
    color: var(--text-light);
}

.footer-newsletter button {
    background-color: var(--primary-color);
    color: var(--lighter-color);
    border: none;
    font-weight: bold;
    padding: 0.5em 1em;
    border-radius: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-newsletter button:hover {
    background-color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(218, 182, 129, 0.2);
    font-size: 0.9rem;
    color: #e5e5e5;
}

/* Animações adicionais para elementos */
.slide-in-left {
    animation: slideInLeft 1s forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 1s forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scale-in {
    animation: scaleIn 0.8s forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.pulse {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

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

@media screen and (max-width: 768px) {
    .proximos-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    .projeto-social {
        padding: 1em;
    }


    .proximos-espetaculos {
        padding: 80px 0;
    }

    .proximos-espetaculos h2 {
        font-size: 2.5rem;
    }
}

/* Estilização das Scrollbars */
/* Para navegadores WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 6px;
    border: 2px solid var(--bg-color);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* Para Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-color);
}

/* Footer Developer Credit */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
}

.developer-credit {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    transition: var(--transition);
}

.developer-credit a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.developer-credit a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .developer-credit {
        margin-top: 10px;
    }
}

/* Para navegadores baseados no Edge */
@supports (-ms-ime-align: auto) {
    * {
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
}

/* Para navegadores baseados no Internet Explorer */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    * {
        -ms-overflow-style: auto;
    }
}