/* Adicionar ao final de style.css */

/* ========================================
   VERIFICADOR DE COBERTURA POR BAIRROS
   ======================================== */

.coverage-checker {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.coverage-form {
    position: relative;
}

.coverage-input-group {
    position: relative;
    margin-bottom: 1rem;
}

.coverage-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    border: 3px solid #e0e0e0;
    border-radius: 50px;
    transition: all 0.3s;
    font-family: inherit;
}

.coverage-input:focus {
    outline: none;
    border-color: #00BCD4;
    box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.1);
}

.coverage-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #00BCD4 0%, #1A237E 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.coverage-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
}

/* Sugestões */
.coverage-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin-top: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.suggestion-item {
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: #f8f9fa;
    color: #00BCD4;
    font-weight: 600;
}

/* Resultado */
.coverage-result {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    animation: slideDown 0.4s ease;
    display: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coverage-result.sucesso {
    background: linear-gradient(135deg, #d4f4dd 0%, #a8e6cf 100%);
    border: 3px solid #28a745;
}

.coverage-result.erro {
    background: linear-gradient(135deg, #ffe5e5 0%, #ffcccc 100%);
    border: 3px solid #dc3545;
}

.coverage-result.info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 3px solid #00BCD4;
}

#coverage-result-text {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
}

.coverage-result.sucesso #coverage-result-text {
    color: #155724;
}

.coverage-result.erro #coverage-result-text {
    color: #721c24;
}

.btn-coverage-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 1rem;
    transition: all 0.3s;
}

.btn-coverage-cta:hover {
    background: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .coverage-checker {
        padding: 2rem 1.5rem;
    }
    
    .coverage-input {
        font-size: 1rem;
    }
    
    .coverage-btn {
        font-size: 1rem;
    }
}