body.overview-body { background-color: #f0f0f0; margin: 0; font-family: Arial, sans-serif; }
.overview-container { max-width: 1200px; margin: auto; padding: 20px; text-align: center; }
.overview-header { margin-bottom: 40px; }
.overview-header h1 { font-size: 2.5rem; color: #4951DC; }
.overview-header p { font-size: 1.2rem; color: #4B5360; line-height: 1.6; }

.overview-card { 
    background: white; 
    border-radius: 16px; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
    margin-bottom: 30px; 
    display: flex; 
    padding: 20px; 
    align-items: center; 
    flex-wrap: nowrap;
}
.overview-card.reverse { flex-direction: row-reverse; }
.overview-card-text { width: 75%; padding: 20px; text-align: left; }
.overview-card-image { width: 25%; padding: 0px; display: flex; align-items: center; justify-content: center; }
.overview-card-image img { width: 100%; height: 100%; max-height: 450px; object-fit: contain; border-radius: 12px; }

.overview-button { 
    margin-top: 20px; 
    background-color: #4951DC; 
    color: white; 
    padding: 10px 20px; 
    border: none; 
    border-radius: 10px; 
    cursor: pointer; 
    transition: background-color 0.3s; 
}
.overview-button:hover { background-color:rgb(104, 111, 230); }
.overview-list { padding-left: 20px; }

/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
    .overview-card { flex-wrap: nowrap; justify-content: space-between; align-items: center; }
    .overview-card-text { width: 65%; }
    .overview-card-image { width: 35%; display: flex; justify-content: center; }
    .overview-card-image img { max-width: 100%; max-height: 250px; object-fit: cover; margin: auto; }
}

#chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4951DC;
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
#chat-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    z-index: 10001;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
}
#chat-widget.hidden {
    display: none;
}
.chat-header {
    background-color: #4951DC;
    color: white;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-body {
    padding: 15px;
    font-size: 14px;
}
.chat-buttons a {
    display: block;
    background-color: #329FD7;
    color: white;
    text-align: center;
    padding: 10px;
    margin: 5px 0;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}
.chat-buttons a:hover {
    background-color: #25D366;
}

#exit-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}
#exit-popup.hidden {
    display: none;
}
.exit-popup-content {
    background: white;
    padding: 30px;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
    font-family: Arial, sans-serif;
}
.exit-popup-content h3 {
    color: #4951DC;
}
.exit-popup-content .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    cursor: pointer;
}
.btn-exit-popup {
    background-color: #4951DC;
    color: white;
    padding: 12px 20px;
    display: inline-block;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background 0.3s;
}
.btn-exit-popup:hover {
    background-color: #329FD7;
}





@media (max-width: 991.98px) {
    .logo-wrapper {
        text-align: center;
        width: 100%;
    }

    .logo-wrapper img {
        margin: 0 auto;
        display: block;
    }
}
