body {
    font-family: Arial, sans-serif;
    background-color: #c9d6e0;
    color: #444;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #61abf4;
    padding: 20px;
    color: white;
    font-size: 24px;
}

footer {
    background-color: #61abf4;
} 

.footerbanner {
    padding: 1px;
}

#footerlogo {
    width: 50px;
}

.apresentacao, .experiencia, .marcacao {
    padding: 20px;
}

#logo {
    width: 300px;
}

.cards {
    display: flex;
    justify-content: center;
    margin: auto;
    gap: 20px;
}

.card {
    background-color: #61abf4;
    /* padding: 20px; */
    /* border-radius: 10px; */
    color: white;
    transition: transform 0.3s;
}

button {
    background-color:#61abf4;
    border: none;
    padding: 15px 30px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    /* transition: background 0.3s; */
}

.term:hover {
    color:#16599d;
    border-: 15px;
    border-color: #f4a261;
}

.servicos {
    color: #61abf4;
}

#agendar:hover {
    background-color: #f4a261;
}

.carousel-image {
    /* width: 1024px; */
    height: 400px;
    background-size: contain; 
    background-position: center;
    background-repeat: no-repeat;
    background-origin: content-box;
}

#chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

#chatbox {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 250px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    display: none;
}

textarea {
    width: 100%;
    height: 50px;
    border: none;
    resize: none;
    padding: 5px;
    font-size: 14px;
}

#chatbutton {
    width: 100%;
    padding: 5px;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}