@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 */


/* Inicio Banner */

.container-banner {
    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/eventos.webp');
    background-attachment: fixed;
    background-size: cover;
}

.titulo {
    color: white;
    text-align: center;
}

.column_wrapper {
    display: flex;
    justify-content: center;
}

.content_wrapper {
    max-width: var(--max-width);
    width: 100%;
    padding: var(--padding-large);
    height: 100%;
}

.responsiveContent h2 {
    color: white;
    border: 5px solid white;
    padding: var(--padding-large);
    text-align: center;
}

/* Estilos para telas médias (tablets, smartphones em modo paisagem) */
@media only screen and (max-width: 1024px) {
    .content_wrapper {
        padding: var(--padding-medium);
    }

    .responsiveContent h2 {
        padding: var(--padding-medium);
    }
}

/* Estilos para telas pequenas (smartphones em modo retrato) */
@media only screen and (max-width: 600px) {
    .content_wrapper {
        padding: var(--padding-small);
    }

    .responsiveContent h2 {
        padding: var(--padding-small);
    }
}

/* Fim Banner */

/* Inicio Banner Cultos */

/* Estilos para telas grandes (desktops, tablets) */
.Cultos,
.contato {
    background-color: white;
}

.links {
    text-decoration: none;
}


.conteudo2 h3 {
    margin: 1em auto 2%;
    font-weight: bold;
    font-size: 2.5em;
    color: black;
    text-align: center;
}

.conteudo2 h4 {
    font-weight: bold;
    font-size: 1.5em;
    color: black;
    text-align: center;
    margin-top: 1em;
}

.conteudo2 h5 {
    margin: 1em 2%;
    font-weight: bold;
    font-size: 1.5em;
    color: black;
    text-align: center;
}

.conteudo2 p {
    margin: 1em 2%;
    font-weight: 400;
    font-size: 1.5em;
    color: black;
    text-align: center;
}

.line {
    text-decoration-line: underline;
}

.btn_cultos {
    border: none;
    padding: 0.5em 1em;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    letter-spacing: 2px;
    display: block;
    /* Change to block to take full width */
    font-weight: 600;
    transition: 1s;
    background-color: black;
    margin: 0 auto;
    margin-top: 2em;
    color: white;
    margin-bottom: 2em;
}


.btn_cultos:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

/* Estilos para telas médias (tablets, smartphones em modo paisagem) */
@media only screen and (max-width: 1024px) {
    .conteudo2 h3 {
        font-size: 2em;
        margin-top: 3em;
    }

    .conteudo2 h4 {
        font-size: 1.25em;
        margin-top: 1em;
    }

    .conteudo2 h5,
    .conteudo2 p {
        font-size: 1.25em;
        margin: 1em 2%;
    }

}

/* Estilos para telas pequenas (smartphones em modo retrato) */
@media only screen and (max-width: 600px) {
    .conteudo2 h3 {
        font-size: 1.5em;
        margin-top: 2em;
    }

    .conteudo2 h4 {
        font-size: 1em;
        margin-top: 0.75em;
    }

    .conteudo2 h5,
    .conteudo2 p {
        font-size: 1em;
        margin: 0.75em 2%;
    }

}

/* Fim Banner Cultos */


/* Inicio Banner Sobre */

/* Estilos para telas grandes (desktops, tablets) */
.conteudo {
    display: flex;
    background-color: black;
    align-items: center;
    padding: 30px;
    /* Added padding for better spacing */
}

.imagem {
    max-width: 40%;
    width: 100%;
    /* Make the image fill its container */
    margin-right: 20px;
    border: 1px solid black;
    border-radius: 3%;
}

.texto {
    flex-grow: 1;
    /* Para ocupar o espaço restante na linha */
    color: rgb(255, 255, 255);
    /* Moved color to the parent container */
}

.texto h3,
.texto p {
    text-align: left;
    margin: 0;
    font-weight: bold;
}

.texto p {
    margin-bottom: 20px;
    /* Added margin to separate paragraphs */
    margin-top: 2em;

}

.links {
    text-decoration: none;
}


.btn_sobre {
    border: none;
    padding: 0.5em 1em;
    text-decoration: none;
    border-radius: 5px;
    letter-spacing: 2px;
    font-weight: 600;
    border: white 1px solid;
    transition: 1s;
    margin-top: 20px;
    background-color: white;
    color: black;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.btn_sobre:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

/* Estilos para telas médias (tablets, smartphones em modo paisagem) */
@media only screen and (max-width: 1024px) {
    .conteudo {
        flex-direction: column;
        padding: 20px;
        /* Adjusted padding for better spacing */
    }

    .imagem {
        max-width: 100%;
        margin: 0;
        margin-bottom: 20px;
    }
}

/* Estilos para telas pequenas (smartphones em modo retrato) */
@media only screen and (max-width: 600px) {
    .btn_sobre {
        margin-top: 10px;
    }
}

/* Fim Banner Sobre */


/* Inicio Banner Form */

/* Estilos para telas grandes (desktops, tablets) */
.form {
    margin: 0 5em 0 5em;
}

.icon {
    margin: .1em;
    margin-left: 3px;
    margin-top: 7px;
    align-items: center;
    position: relative;
    bottom: 10px;
    width: 25px;
    height: 25px;
}

.titulo_contato {
    text-align: center;
    color: black;
    font-weight: bold;
    margin: 20px;
}

.links {
    text-decoration: none;
    color: black;
    transition: 1s;
}

.links:hover {
    color: rgb(119, 119, 119);
    transform: scale(1.4);
}

.contato_item {
    position: relative;
    right: 60px;
}

.texto {
    color: white;
    font-size: 15px;
    padding: .3em;
    text-align: center;
}

.form label {
    margin: 5px;
}

.botaoCTA_2 {
    padding: 0.5em 1em;
    text-decoration: none;
    transition: 0.5s;
    border: none;
    color: rgb(255, 255, 255);
    background-color: black;
    letter-spacing: .1em;
    font-weight: 500;
    margin: 0 auto;
    display: block;
    border-radius: 5px;
    transition: 2s;
}

.botaoCTA_2:hover {
    color: rgb(119, 119, 119);
    transform: scale(1.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Estilos para telas médias (tablets) */
@media screen and (max-width: 1024px) {
    .form {
        margin: 0 2em;
    }

    .btn_form {
        margin-left: 0;
    }
}

/* Estilos para telas pequenas (smartphones em modo paisagem) */
@media screen and (max-width: 768px) {
    .form {
        margin: 0;
    }

    .contato_item {
        right: 0;
    }

    .btn_form {
        margin-left: 0;
    }
}


/* Estilos para telas médias (tablets) */
@media screen and (max-width: 1024px) {
    .form {
        margin: 0 2em;
    }

    .btn_form {
        margin-left: 0;
    }

    .row.col-md-12 {
        margin-right: 0;
        /* Removemos a margem à direita na classe row col-md-12 */
        margin-left: 0;
        /* Removemos a margem à esquerda na classe row col-md-12 */
    }
}

/* Estilos para telas pequenas (smartphones em modo paisagem) */
@media screen and (max-width: 768px) {
    .form {
        margin: 0;
    }

    .contato_item {
        right: 0;
    }

    .btn_form {
        margin-left: 0;
    }

    .row.col-md-12 {
        margin-right: 0;
        margin-left: 0;
    }
}

/* Estilos para telas muito pequenas (smartphones em modo retrato) */
@media screen and (max-width: 600px) {
    .form {
        margin: 0;
    }

    .contato_item {
        right: 0;
    }

    .btn_form {
        margin-left: 0;
    }

    .row.col-md-12 {
        margin-right: 0;
        margin-left: 0;
    }
}

/* Ajuste adicional para telas pequenas (smartphones em modo paisagem) */
@media screen and (max-width: 768px) {
    .container {
        padding: 0;
        margin: 0;
    }

    .contato {
        width: 100%;
    }
}

/* Fim Banner Form */


/* Footer Inicio */

.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 */



.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 */

}