@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Configuração principal */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html,
body,
#root {
    background-color: #FFF;
    height: 100%;
}

body {
    font-size: 16px;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }

    /* Additional styles for screens with a maximum width of 768px */
    /* For example, adjust spacing, layout, etc. */
    /* You can also override existing styles within this media query */

    /* Example: Centering elements on smaller screens */
    .container {
        width: 100%;
        padding: 10px;
    }

    /* Example: Adjusting margins for smaller screens */
    .element {
        margin: 5px;
    }
}

/* Fim da configuração principal */

/* Navbar */
.navbar {
    display: flex;
    flex-wrap: wrap;
    /* Adicionado para lidar com telas menores */
    background-color: #000000;
    padding: 0.8em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: rgba(0, 0, 0, 0.219) outset 0.5px;
}

.list {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.item {
    margin-right: 1.5em;
    margin-left: 2em;
    margin-top: 10px;
    font-size: 0.9em;
    letter-spacing: 0.4em;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

.item a {
    color: #ffffff;
    text-decoration: none;
}

.item a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transition: bottom 0.3s ease, background-color 0.3s ease;
}

.item:hover a::before {
    bottom: 0;
    background-color: #ffffff;
}

.navbar img {
    width: auto;
    height: 50px;
    max-width: 100%;
    transition: 1s;
}

.navbar img:hover {
    transform: scale(1.2);
    background-color: #000000bd;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

/* Adicionada media query para ajustar o layout em telas menores */
@media only screen and (max-width: 768px) {
    .list {
        justify-content: center;
        /* Ajustado para centralizar os itens em telas menores */
    }

    .item {
        margin-right: 1em;
    }
}

/* Fim da navbar */

/* Container */

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}


.min-height {
    min-height: 75%;

}

.start {
    justify-content: flex-start;
}

.column {
    flex-direction: column;
    justify-content: flex-start;
}

/* Fim do Container */

.footer {
    background-color: #000;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

.social_list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social_list li {
    margin: 0 1em;
    font-size: 24px;
}

.social_list svg {
    font-size: 1.2em;
    cursor: pointer;
}

.links_footer:hover {
    color: #888888;
}

.links_footer {
    color: white;
    text-decoration: none;
}

.copy_right {
    margin-top: 10px;
    font-size: 14px;
    align-items: center;
    text-align: center;
}

/* Adicione regras de mídia para tornar o rodapé responsivo */
@media screen and (max-width: 768px) {
    .social_list {
        flex-direction: row;
        /* Display items in a row */
        justify-content: center;
        /* Center items horizontally */
    }

    .social_list li {
        margin: 0 0.5em;
        /* Adjust margin for items in a row */
    }

    .copy_right {
        margin-top: 1em;
        /* Add some space below the social icons on smaller screens */
    }
}

.copy_right span {
    font-weight: bold;
}

/* Footer Fim */

/* Inicio Banner Cultos */

.container-sobre {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("./img/culto.webp");
    background-attachment: fixed;
    background-position: center;
    /* Adicionado para centralizar a imagem de fundo */
    background-size: cover;
    /* Adicionado para cobrir toda a área disponível */
    background-repeat: no-repeat;
    /* Adicionado para evitar repetição da imagem */
}


.contentWrapper {
    max-width: 1200px;
    width: 100%;
    padding: 20px;
}

.responsiveContent h2 {
    color: white;
    padding: 15px;
    text-align: center;
    position: relative;
    border: 3px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 24px;
    /* Ajustado o tamanho da fonte */
}

.responsiveContent h2::before,
.responsiveContent h2::after {
    content: '';
    position: absolute;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    box-sizing: border-box;
    border: 3px white solid;
    top: -3px;
    left: -3px;
    pointer-events: none;
}

.responsiveContent h2::before {
    transform: translate(6px, 6px);
}

.responsiveContent h2::after {
    transform: translate(-6px, -6px);
}

@media only screen and (max-width: 768px) {
    .container-sobre {
        height: 70vh;
    }

    .columnWrapper {
        flex-direction: column;
    }

    .responsiveContent h2 {
        font-size: 18px;
    }
}

/* Fim Banner Cultos */

.lives {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 2em;
    transition: 0.5s;
}

.lives:hover {
    transform: scale(1.01);
    background-color: #f0f0f0;
    cursor: pointer;
}

.live {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

span {
    color: rgb(255, 217, 0);
}

.live img {
    width: 100%;
    height: auto;
    max-height: 40vh;
}

.textContainer {
    margin-top: 4em;
    text-align: center;
}

.textContainer h4,
.textContainer h5,
p {
    margin: 10px;
}

.link {
    text-decoration: none;
    color: #000;
}




/* Adicionado media query para ajustar o layout em telas menores */
@media only screen and (min-width: 768px) {
    .live {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .live img {
        max-width: 40%;
    }

    .textContainer {
        margin-left: 20px;
        text-align: left;
    }
}



.navbar-toggler {
    background-color: #FFFF00;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    /* Adicionando transição para suavizar a animação */
}

.bar {
    width: 30px;
    height: 2px;
    background-color: #FFFF00;
    margin: 4px 0;
    transition: transform 0.3s ease;
    /* Adicionando transição para suavizar a animação */

}

.navbar-toggler.active .bar.top {
    transform: translateY(9px) rotate(45deg);
}

.navbar-toggler.active .bar.middle {
    transform: scaleX(0);
    /* Oculta a barra do meio quando o botão está ativo */
}

.navbar-toggler.active .bar.bottom {
    transform: translateY(-9px) rotate(-45deg);
}

/* Adicione estilos adicionais conforme necessário */