*, *::before, *::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #DADBDC;
    background-image: 
        repeating-linear-gradient(
            90deg,          
            #b1cce2b7,          
            #B1CCE2b7 1px,      
            transparent 1px,
            transparent 200px
        ),
        repeating-linear-gradient(
            0deg,
            #B1CCE2b7,
            #B1CCE2b7 1px,
            transparent 1px,
            transparent 300px
        );
}

header {
    width: 100%;
    height: 720px;
    background: url("/assets/img/banner-hero.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

img {
    max-width: 100%;
}

.hero {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-right, .hero-left {
    flex: 1;
    padding-top: 120px;
}

.hero-right {
    padding-inline: 20px;
    max-width: 575px;
}

.box-form {
    display: inline-flex;
    max-width: 575px;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
    border-radius: 6px;
    border: 1.5px solid #C04197;
    background: rgba(8, 19, 28, 0.94);
    backdrop-filter: blur(2.5999999046325684px);
    color: #F5F5F5;

}

.infos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding-block: 8px;
    padding-inline: 4px;
    border-radius: 6px;
    border: 0.8px solid rgba(202, 75, 154, 0.44);
    background: #132534;
    font-weight: bold;
    width: 100%;
}

.infos-aovivo, .infos-data, .infos-hora {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

input {
    padding: 20px;
    border-radius: 4px;
    border: 1px solid rgba(187, 172, 252, 0.20);
    background: #0A1620;
}

input::placeholder {
    color: #8C8C8C;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
}

input, select, textarea{
    color: #f5f5f5;
    font-family: "Poppins", Arial, Helvetica, sans-serif;

}

textarea:focus, input:focus {
    color: #f5f5f5;
    font-family: "Poppins", Arial, Helvetica, sans-serif;

}

button, .btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: linear-gradient(90deg, #CA4B9A 0%, #8D0E85 100%);
    box-shadow: 0px 4px 19.6px 0px rgba(194, 68, 146, 0.76);
    height: 64px;
    border: none;
    color: #F5F5F5;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    margin-top: 10px;
    padding-inline: 40px;
    transition: all .5s ease-in-out;
}

button:hover, .btn-primary:hover {
    transform: scale(1.05);
}

.part {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: -12px;
}

.part img {
    border-radius: 50%;
    border: 1px solid #C04197;

}

.part-nome {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.part-nome span {
    font-size: 16px;
    letter-spacing: 2px;
}

.part-nome p {
    font-weight: bold;
    font-size: 20px;
}

h1 {
    border-top: 2px solid #404951;
    padding-top: 20px;
    text-align: center;
}

.box-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 24px;
    padding: 20px 0;
    border-radius: 6px;
    border: 1px solid #08131C;
    background: linear-gradient(90deg, #CDBE18 0%, #E8DF7E 100%);
    font-size: 20px;
    margin-top: 12px;
    animation: pulse 2s infinite;
}

.box-play img {
    border: 1px solid #08131C;
    border-radius: 50%;
}

main {
    position: relative;
    margin-top: 100px;
}

.main-container {
    max-width: 1440px;
    padding-inline: 20px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h2 {
    width: 45%;
    font-family: "Sedgwick Ave", Arial, Helvetica, sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 46px;
    background: linear-gradient(90deg, #1A69A3 0%, #BB329D 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    align-self: flex-start;
}

main img {
    margin-top: 48px;
    width: 100%;
    margin-bottom: 40px;
}

.splash1 {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.splash2 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.splash3 {
    position: absolute;
    right: 100px;
    bottom: 0;
    z-index: -1;
}

.splash4 {
    position: absolute;
    left: 10px;
    top: 0;
    z-index: -1;
    transform: rotate(57deg);
}

.splash5 {
    position: absolute;
    left: -400px;
    top: 0;
    z-index: -1;
    transform: rotate(17deg);
}

.banner-mobile {
    display: none;
}

.trailer {
    position: relative;
    max-width: 1440px;
    padding-inline: 20px;
    margin: 120px auto;
    gap: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trailer-desc h3 {
    letter-spacing: 2px;
    font-family: "Sedgwick Ave", Arial, Helvetica, sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    background: linear-gradient(90deg, #1A69A3 0%, #BB329D 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.trailer-desc p {
    font-style: normal;
    font-weight: 400;
    /* line-height: 46px; */
    color: #3f3f3f;
    align-self: flex-start;
    margin-top: 20px;
    font-size: 20px;
}

.trailer-video {
    width: 100%;
    height: 100%;
}

iframe {
    border: 1.5px solid #C04197;
    border-radius: 6px;
}

footer {
    height: 100%;
    background-color: #0F849E;
}

footer img {
    width: 100%;
    height: auto;
    object-fit: cover; 
}

.footer-mobile {
    display: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); /* Começa com um leve brilho dourado */
    }
    50% {
        transform: scale(1.027); /* Expande um pouco */
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8); /* Aumenta o brilho dourado */
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); /* Volta ao tamanho e brilho originais */
    }
}

@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 1), 0 0 30px rgba(255, 215, 0, 0.7);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    }
}


@media (max-width: 1024px) {

    .main-container, 

    .hero {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-left {
        display: none;
    }

    .hero-right {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .box-play {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        max-width: 558px;
        width: 100%;
        gap: 12px;
        padding: 20px 0;
        border: 1px solid #08131C;
        background: linear-gradient(90deg, #CDBE18 0%, #E8DF7E 100%);
        font-size: 16px;
        margin-top: 12px;
        animation: pulse 2s infinite;
    }

    h2 {
        width: 100%;
        margin-top: 100px;
        text-align: center;
    }

    .splash1 {
        right: -200px;
        top: -100px;
        width: 50%;
        display: none;
    }
    
    .splash2 {
        left: -100px;
        bottom: 0;
        width: 50%;
    }
    
    .splash3 {
        right: -100px;
        bottom: -100px;
        width: 30%;
    }
    
    .splash4 {
        left: -100px;
        top: -100px;
        width: 20%;
    }

    .splash5 {
        left: -100px;
        top: 100px;
        width: 30%;

    }

    .trailer {
        text-align: center;
        gap: 32px;
        flex-direction: column;
    }

    iframe {
        width: 100%;
    }
}

@media (max-width: 600px) {
    header {
        height: 100%;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        margin-top: 20px;
    }

    .box-form {
        padding: 16px;
        display: flex;
        width: 100%;
    }

    .box-play {
        flex-direction: column;
        text-align: center;
        border-radius: 6px;
    }

    .hero-right {
        margin-top: 0;
        padding-top: 10px;
        padding-inline: 10px;
    }
    .infos {
        font-size: 14px;
        flex-wrap: wrap;
        gap: 4px;
    }

    .splash1 {
        position: absolute;
        right: -200px;
        top: -100px;
        z-index: -1;
        width: 50%;
        display: none;
    }
    
    .splash2 {
        position: absolute;
        left: -20px;
        bottom: 0;
        z-index: -1;
        width: 50%;
    }
    
    .splash3 {
        position: absolute;
        right: 0px;
        bottom: 0px;
        z-index: -1;
        width: 30%;
    }
    
    .splash4 {
        position: absolute;
        left: 0px;
        top: -130px;
        z-index: -1;
        transform: rotate(57deg);
        width: 30%;
    }

    .banner-mobile {
        display: block;
    }

    .banner-desk {
        display: none;
    }

    .main-container {
        padding-inline: 10px;
    }

    .trailer {
        margin-block: 60px;
        padding-inline: 10px;
    }

    .footer-mobile {
        display: block;
    }

    .footer-desk {
        display: none;
    }
}