/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

header {
    text-align: left;
    padding: 20px;
}

h1 {
    font-size: 24px;
    color: #333;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    width: 150px;
    height: 150px;
    margin-left: 20px;
}

h3 {
    text-align: center;
	margin-bottom: 50px;
}

.options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;

}

.option-card {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 15px;
    width: 180px;
    height: 180px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: #e9ecef;
}

.icon img {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.option-card p {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin: 0;
}

footer {
    background-color: #fafafa;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #ddd;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.chat-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border-radius: 25px;
    border: 1px solid #ddd;
    margin-right: 10px;
    font-size: 16px;
}

.chat-input button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
}

.chat-input button:hover {
    background-color: #0056b3;
}

.disclaimer {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}

/* Banner de alerta */
.banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.banner-content {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
}

.banner-content h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.banner-content p {
    margin-bottom: 20px;
    color: #555;
}

.banner-content label {
    display: block;
    font-weight: 600;
    color: #333;
}

.banner-content input[type="text"],
.banner-content input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.banner-content input[type="checkbox"] {
    margin-right: 10px;
}

.banner-content a {
    color: #007bff;
    text-decoration: none;
}

.banner-content a:hover {
    text-decoration: underline;
}

.banner-content button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.banner-content button:hover {
    background-color: #0056b3;
}

/* Estilos para a conversa */
.chat-output {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f8f9fa;
	margin-bottom: 7%;
    width: 100%;
	display: none;
}

.user-message, .assistant-message {
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    max-width: 100%;
}

.user-message {
    background-color: #d1e7dd;
    text-align: left;
    align-items: start;
    max-width: 80%;
}

.assistant-message {
    background-color: #f8d7da;
    text-align: right;
    max-width: 80%;
    margin-left: 20%
}