/* Botón Semillero Online - Navbar Flotante Blanco con Texto */
.btn-semillero {
    background: white;
    color: #4A4A4A;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.btn-semillero:hover {
    background: #FF6B35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    border-color: transparent;
}

.btn-semillero:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.3);
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .btn-semillero {
        padding: 0.45rem 0.85rem;
        font-size: 0.85rem;
        order: 2;
    }
}



