body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    overflow-x: hidden;
    background: rgb(215,215,232);
    background: linear-gradient(180deg, rgba(215,215,232,1) 11%, rgba(255,255,255,1) 50%);
}

body::-webkit-scrollbar-track
{
	background-color: white;
}

body::-webkit-scrollbar
{
	width: 10px;
	background-color: white;
}

body::-webkit-scrollbar-thumb
{
	background-color: #feb706;	
}

#apresentacao {
    display: flex;
    background-image: url(./img/background.png);
    background-repeat: no-repeat;
    background-size: cover;
}

#apresentacao>div>p:nth-child(1) {
    color: white;
    font-weight: bold;
    font-size: 2rem;
}

.apresentacao-texto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 2rem;
}

.ilustracao img {
    filter: drop-shadow(1px 1px 6px #00000099);
    width: 100%;
    animation: scaleUpDown 2s infinite alternate;
}

@keyframes scaleUpDown {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

#quem-somos {
    padding: 2rem;
    text-align: center;
    color: black;
}

#quem-somos h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

#quem-somos p {
    font-weight: 500;
    margin-left: 1rem;
    margin-right: 1rem;
}

.quem-somos-conteudo {
    align-items: center;
}

.quem-somos-imagem {
    text-align: center;
}

.quem-somos-imagem img {
    filter: drop-shadow(1px 1px 6px #00000099);
    width: 50%;
}

.services {
    padding: 50px 20px;
}

.services h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    text-align: left;
}

.service-box img {
    filter: drop-shadow(1px 1px 6px #00000099);
    width: 100px;
    margin-bottom: 20px;
}

.service-box div {
    display: flex;
    justify-content: center;
}

.service-box h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.learn-more-btn {
    background-color: #00bcd4;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 30px;
}

.learn-more-btn:hover {
    background-color: #0097a7;
}

.contact-section {

    text-align: center;
    background: rgb(24, 39, 75);
    color: #fff;
    padding: 2rem;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.contact-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    text-align: left;
    color: black;
    text-align: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.contact-box img {
    filter: drop-shadow(1px 1px 6px #00000099);
    width: 10rem;
    margin-bottom: 20px;
}

.contact-box h2 {
    font-size: 1.5em;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.contact-box p {
    font-size: 1em;
    margin-bottom: 10px;
}

.contact-section p {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.contact-box a {
    background-color: #18274b;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}

.agradecimentos {
    text-align: center;
}

.agradecimentos img {
    filter: drop-shadow(1px 1px 6px #00000099);
    width: 250px;
}

.agradecimentos p {
    font-weight: 500;
    margin-left: 1rem;
    margin-right: 1rem;
}

.contact-box a:hover {
    background-color: #0f172c;
}

footer {
    background-color: #333;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
}

footer p {
    margin: 0;
}

@media (max-width: 732px) {
.apresentacao-texto {
    padding-left: 0;
}

    #apresentacao {
        flex-direction: column;
    }

    #apresentacao>div>p:nth-child(1) {
        color: white;
        font-weight: bold;
        text-align: center;
        font-size: 1.5rem;
    }

    .quem-somos-imagem img {
        filter: drop-shadow(1px 1px 6px #00000099);
        width: 100%;
    }

    .ilustracao img {
        filter: drop-shadow(1px 1px 6px #00000099);
        width: 50%;
    }

    .ilustracao {
        text-align: center;
    }
}