body.dark-mode {
    background-color: #1a1a2e;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.logo {
    max-width: 180px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

.card {
    background-color: #16213e;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control, .form-control-lg {
    background-color: #2d2d44;
    color: #e0e0e0;
    border: 1.5px solid #3a3a5a;
    transition: all 0.3s ease;
}

.form-control:focus, .form-control-lg:focus {
    background-color: #2d2d44;
    color: #e0e0e0;
    border-color: #FFD700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.custom-date-time {
    position: relative;
    padding-left: 40px !important;
    background-color: #2d2d44 !important;
    border-radius: 10px !important;
    border: 1.5px solid #3a3a5a !important;
    color: #e0e0e0 !important;
    transition: all 0.3s ease;
}

.custom-date-time::-webkit-calendar-picker-indicator {
    filter: invert(70%) sepia(100%) saturate(500%) hue-rotate(30deg) brightness(1.2);
    cursor: pointer;
}

.custom-date-time:focus {
    border-color: #FFD700 !important;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5) !important;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #FFD700;
}

.btn-primary {
    background-color: #FFD700;
    border: none;
    border-radius: 20px;
    padding: 12px 30px;
    font-weight: bold;
    color: #1a1a2e;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-color: #e0e0e0;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #1a1a2e;
    transform: translateY(-2px);
}

.info-box, .preco-box {
    background-color: #25274d;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-box:hover, .preco-box:hover {
    background-color: #2d2d44;
    transform: translateY(-5px);
}

.preco {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFD700;
}

footer {
    background-color: #25274d;
    border-top: 1.5px solid #3a3a5a;
}

.suggestions {
    position: absolute;
    background-color: #2d2d44;
    border: 1.5px solid #3a3a5a;
    border-radius: 10px;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    z-index: 1000;
    display: none;
}

.suggestion-item {
    padding: 12px;
    cursor: pointer;
    border-bottom: 1.5px solid #3a3a5a;
    transition: all 0.3s ease;
}

.suggestion-item:hover {
    background-color: #FFD700;
    color: #1a1a2e;
}

.row .form-group {
    padding: 0 10px;
}

.shadow-lg {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.rounded-pill {
    border-radius: 50px;
}

#map {
    border-radius: 15px;
    overflow: hidden;
}