/* ========================================
📁 BUSCADOR - Estilos específicos
======================================== */

.buscador-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 20px;
}

.buscador-box {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.buscador-logo {
    font-size: 48px;
    margin-bottom: 10px;
}

.buscador-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 18px;
}

.buscador-form {
    width: 100%;
}

.buscador-input-group {
    display: flex;
    gap: 10px;
    width: 100%;
}

.buscador-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.buscador-input:focus {
    border-color: #3498db;
}

.buscador-btn {
    padding: 15px 30px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.buscador-btn:hover {
    background: #2980b9;
}

.sugerencias-box {
    display: none;
    margin-top: 10px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
    text-align: left;
}

.sugerencia-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.sugerencia-item:hover {
    background: #f0f8ff;
}

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