/* Sobreescrita das cores principais */

.btn-primary {
    background-color: #ff4655;
}

.border-primary {
    --bs-border-opacity: 1;
    border-color: #ff4655;
}

.bg-red {
    background-color: #ff4655;
}

.overlay-danger {
    background-color: #ff4655;
}

.text-primary {
    color: #ff4655;
}

.text-danger {
    color: #ff4655;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Raleway';
    overflow-x: hidden;
    transition: background-color 1s ease, color 1s ease;
}

.loaded {
    background-color: white;
    color: #ff4655;
}

.inverted {
    background-color: #ff4655;
    color: white;
}

body.loaded {
    overflow-y: auto;
}

.menu,
section {
    display: none;
}

.menu.loaded,
section.loaded {
    display: block;
}

.menu {
    position: fixed;
    top: 1%;
    left: 20%;
    right: 20%;
    background-color: #e9eff6;
    color: #000000;
    padding: 10px 20px;
    border-radius: 10px;
    /*box-shadow: 0 4px 6px rgba(40, 40, 40, 0.1);*/
    z-index: 1000;
    font-size: 100%;
    transition: background-color 1s ease, color 1s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.menu ul li {
    margin: 0 10px;
}

.menu ul li a {
    text-decoration: none;
    color: #000000;
    transition: color 0.3s ease;
}

.menu ul li a:hover {
    color: #282828;
}

#hamburger {
    display: none;
    flex-direction: column;
    margin-right: 5%;
    cursor: pointer;
}

#hamburger span {
    background: #000000;
    border-radius: 2px;
    display: block;
    height: 3px;
    margin: 2px;
    width: 25px;
}

#responsive-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e9eff6;
    color: #000000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

#responsive-menu ul {
    list-style: none;
    padding: 0;
}

#responsive-menu ul li {
    margin: 20px 0;
}

#responsive-menu ul li a {
    color: #000000;
    font-size: 200%;
    text-decoration: none;
}

#close-menu {
    position: absolute;
    margin-left: 100px;
    top: -30px;
    right: -117px;
    background: none;
    border: none;
    color: #000000;
    font-size: 400%;
    cursor: pointer;
}

#content {
    margin-top: 70px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section {
    width: 100%;
    min-height: 100vh;
    display: block;
    /* Changed from flex to block */
    justify-content: center;
    font-size: 150%;
}

section h1,
section h3,
section p {
    width: 100%;
    /* Ensure full width */
    text-align: center;
    /* Center text */
    margin: 10px 0;
    /* Add margin for spacing */
}

.next-section-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(40, 40, 40, 0.5);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: none;
    justify-content: center;
    align-items: center;
}

.next-section-button.loaded {
    display: flex;
}

.next-section-button:hover {
    background-color: rgba(40, 40, 40, 0.7);
}

.next-section-button i {
    font-size: 24px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: #ff4655;
    border-radius: 5px;
}

::-webkit-scrollbar-track {
    background: white;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #282828;
    color: white;
    padding: 20px 40px;
    width: 100%;
}

footer .footer-left {
    display: flex;
    align-items: center;
}

footer .footer-left img {
    width: 50px;
    margin-right: 20px;
}

footer .footer-center {
    font-size: 12px;
}

footer .footer-right a {
    color: white;
    margin-left: 80px;
    text-decoration: none;
    font-size: 20px;
}

@media (max-width: 768px) {
    .menu ul {
        display: none;
    }

    #hamburger {
        display: flex;
    }

    .menu {
        justify-content: space-between;
        visibility: visible;
        width: 90%;
        left: 2%;
        right: 2%;
        margin-top: 2%;
        padding: 10px;
        font-size: 16px;
        top: 0;
    }

    .menu ul {
        flex-direction: column;
        align-items: center;
    }

    .menu ul li {
        margin: 10px 0;
    }

    .next-section-button {
        bottom: 60px;
    }

    section {
        font-size: 2em;
    }
}

input,
textarea,
button {
    border-radius: 5px;
    /* Define as bordas arredondadas */
    border: 1px solid #ccc;
    /* Define uma borda leve */
    padding: 10px;
    /* Define o preenchimento interno */
    font-size: 16px;
    /* Define o tamanho da fonte */
}

input:focus,
textarea:focus,
button:focus {
    outline: none;
    /* Remove o contorno padrÃƒÂ£o ao focar */
    border-color: #ff4655;
    /* Define a cor da borda ao focar */
}

button {
    background-color: #ff4655;
    /* Define a cor de fundo do botÃƒÂ£o */
    color: white;
    /* Define a cor do texto do botÃƒÂ£o */
    cursor: pointer; 
}

button:hover {
    background-color: #e63946;
    /* Define a cor de fundo ao passar o mouse */
}
 

#sectionWelcome {
    height: 100vh;
    background-color: #e9eff6;
    position: relative;
}

.carousel-inner {
    height: 100%;
}

.carousel-item img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 100%;
        object-fit: cover;
    }
}
