@import url('https://fonts.googleapis.com/css2?family=Festive&family=Homemade+Apple&family=Indie+Flower&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Satisfy&display=swap');

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

header {
    background-color: #dfe7ee;
    padding: 20px;
    color: black;
    font-size: 24px;
}

footer {
    background-color: #dfe7ee;
} 

.footerbanner {
    padding: 1px;
}

#footerlogo {
    width: 40px;
    margin-top: 10px;
}

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


#logo {
    width: 150px;
}

#titulo{
    font-family: "Festive", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 70px;
}

#news {
    font-family: "Newsreader", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

#ready {
    color: #61abf4;
    font-family: "Homemade Apple", cursive;
    font-weight: 400;
    font-style: normal;
}


/* Container do carrossel */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Faixa de rolagem do carrossel */
.carousel {
    display: flex;
    transition: transform 0.5s ease;
}

/* Cada item do carrossel */
.carousel-item {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    font-size: 24px;
    font-family: "Indie Flower", cursive;
    font-weight: 400;
    font-style: normal;
}


.texto {
    text-align: justify;
    text-justify: inter-word;
    font: 30px;
    
}

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

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

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

.servicos {
    color: #61abf4;
}

#agendar:hover {
    background-color: #ffffff;
    color: #61abf4;
}

#chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: green;
    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;
}

.close {
    /* position: absolute; */
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #c5c5c5;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close:hover {
    color: #007bff;
}

a:link, a:visited, a:hover {
    color: #61abf4;
    text-decoration: none;
}
